#! /usr/bin/env bash # Installs applications. set -o nounset set -o errexit set -o pipefail IFS=$'\n\t' SCRIPT_PATH="$MAC_OS_CONFIG_PATH/bin/install_applications" if [[ -x "$SCRIPT_PATH" ]]; then "$SCRIPT_PATH" else printf "WARNING: Applications install script does not exist or is not executable.\n" fi