Files
runner-images/images/linux/scripts/installers/homebrew-validate.sh
2020-10-12 15:47:09 +05:00

15 lines
461 B
Bash

#!/bin/bash -e
################################################################################
## 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