diff --git a/bin/install_homebrew_casks b/bin/install_homebrew_casks index 690015b..b647c49 100755 --- a/bin/install_homebrew_casks +++ b/bin/install_homebrew_casks @@ -6,9 +6,11 @@ set -o nounset set -o errexit set -o pipefail IFS=$'\n\t' + SCRIPT_PATH="$MAC_OS_CONFIG_PATH/bin/install_homebrew_casks" if [[ -x "$SCRIPT_PATH" ]]; then + install_homebrew "$SCRIPT_PATH" else printf "WARNING: Homebrew Casks install script does not exist or is not executable.\n" diff --git a/bin/install_homebrew_formulas b/bin/install_homebrew_formulas index a2a8a9a..c8b8563 100755 --- a/bin/install_homebrew_formulas +++ b/bin/install_homebrew_formulas @@ -6,9 +6,11 @@ set -o nounset set -o errexit set -o pipefail IFS=$'\n\t' + SCRIPT_PATH="$MAC_OS_CONFIG_PATH/bin/install_homebrew_formulas" if [[ -x "$SCRIPT_PATH" ]]; then + install_homebrew "$SCRIPT_PATH" else printf "WARNING: Homebrew Formulas install script does not exist or is not executable.\n"