mirror of
https://github.com/actions/runner-images.git
synced 2025-12-11 03:27:05 +00:00
15 lines
461 B
Bash
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
|
|
|