Refactored Homebrew software as Homebrew Formulas.

- Allows for expansion of additional Homebrew software in the future
  (i.e. taps, bottles, casks, etc.)
This commit is contained in:
Brooke Kuhlmann
2017-02-17 19:18:02 -07:00
parent 38fa30a028
commit 79f7103179
4 changed files with 39 additions and 39 deletions

18
bin/install_homebrew_formulas Executable file
View File

@@ -0,0 +1,18 @@
#! /usr/bin/env bash
# DESCRIPTION
# Installs Homebrew Formula software.
# SETTINGS
set -o nounset
set -o errexit
set -o pipefail
IFS=$'\n\t'
SCRIPT_PATH="$MAC_OS_CONFIG_PATH/bin/install_homebrew_formulas"
# EXECUTION
if [[ -x "$SCRIPT_PATH" ]]; then
"$SCRIPT_PATH"
else
printf "WARNING: Homebrew Formulas install script does not exist or is not executable.\n"
fi