From d81f07fbf53666a37ab01bd463152e10252869ae Mon Sep 17 00:00:00 2001 From: David Huber Date: Tue, 20 Feb 2024 07:41:38 -0600 Subject: [PATCH] Clean up build_upp.sh. -Corrected whitespace (tabs instead of spaces) -Removed debug print statement -Alphebetized flags --- sorc/build_upp.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sorc/build_upp.sh b/sorc/build_upp.sh index 5c4bf45a9f..8a2e1f6fcd 100755 --- a/sorc/build_upp.sh +++ b/sorc/build_upp.sh @@ -6,11 +6,11 @@ cd "${script_dir}" || exit 1 OPTIND=1 _opts="" -while getopts ":dvj:" option; do +while getopts ":dj:v" option; do case "${option}" in d) _opts+="-d ";; + j) export BUILD_JOBS="${OPTARG}" ;; v) _opts+="-v ";; - j) export BUILD_JOBS="${OPTARG}"; echo success ;; :) echo "[${BASH_SOURCE[0]}]: ${option} requires an argument" ;;