#! /usr/bin/env bash # Defines global settings. # General set -o nounset set -o errexit set -o pipefail IFS=$'\n\t' # Homebrew export HOMEBREW_CURL_RETRIES=3 # Custom Applications # Add app URLs and names here for apps not available via Homebrew or App Store. # Example: # export MY_APP_NAME="MyApp.app" # export MY_APP_URL="https://example.com/download/myapp.dmg" # export MY_APP_VOLUME_NAME="MyApp"