15 lines
449 B
Bash
15 lines
449 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 cat not run after reboot"
|
||
|
|
exit 1
|
||
|
|
fi
|
||
|
|
|