Files
runner-images/images/linux/scripts/installers/homebrew-validate.sh
T

15 lines
458 B
Bash
Raw Normal View History

2020-04-10 14:20:16 +05:00
#!/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"
2020-04-10 14:20:16 +05:00
exit 1
fi