Fix the parameter switches.

This commit is contained in:
2025-10-25 15:16:50 -07:00
parent 07d1adc926
commit a42d1d05df

View File

@@ -39,9 +39,9 @@ while getopts ":lb:gwsh" arg; do
case $arg in
l) local="Y" && echo "Running $LOCAL as the playbook." ;;
b) branch="$OPTARG" && echo "Using branch $branch instead of $BRANCH." ;;
l) create_general="Y" && echo "Creating basic '$general_config'." ;;
l) create_workstation="Y" && echo "Creating basic '$workstation_config'." ;;
l) create_server="Y" && echo "Creating basic '$server_config'." ;;
g) create_general="Y" && echo "Creating basic '$general_config'." ;;
w) create_workstation="Y" && echo "Creating basic '$workstation_config'." ;;
s) create_server="Y" && echo "Creating basic '$server_config'." ;;
h) usage ;;
*) echo "ERROR: Parameter $OPTARG was not recognized." && usage 1 ;;
esac