17 lines
316 B
Bash
Executable File
17 lines
316 B
Bash
Executable File
#! /usr/bin/env bash
|
|
|
|
# Configures installed software.
|
|
|
|
set -o nounset
|
|
set -o errexit
|
|
set -o pipefail
|
|
IFS=$'\n\t'
|
|
|
|
SCRIPT_PATH="$MAC_OS_CONFIG_PATH/bin/configure_software"
|
|
|
|
if [[ -x "$SCRIPT_PATH" ]]; then
|
|
"$SCRIPT_PATH"
|
|
else
|
|
printf "WARNING: Configure software script does not exist or is not executable.\n"
|
|
fi
|