Files
runner-images/images/linux/scripts/installers/homebrew-validate.sh
Mikhail Timofeev c9638062b2 [Ubuntu] Prepend brew directories to the PATH (#1168)
* prepend

* add comment and move installation

* change toolcache dir in aws-sam script
2020-07-07 08:05:14 +03:00

15 lines
458 B
Bash

#!/bin/bash
################################################################################
## File: homebrew-validate.sh
## Desc: Validate the Homebrew can run after reboot without extra configuring
################################################################################
# Validate the installation
echo "Validate the Homebrew can run after reboot"
if ! command -v brew; then
echo "brew executable not found after reboot"
exit 1
fi