Updated setup software as configure software script

Necessary to better describe the purpose of this script.
This commit is contained in:
Brooke Kuhlmann
2021-03-15 21:51:50 -06:00
parent c3c3036c88
commit f640e37089
4 changed files with 20 additions and 20 deletions

16
bin/configure_software Executable file
View File

@@ -0,0 +1,16 @@
#! /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