From d4b40030fc173e57f3d4f1f297b4b1d3038dbde9 Mon Sep 17 00:00:00 2001 From: "Michael Kavulich, Jr" Date: Mon, 14 Oct 2019 17:33:43 -0600 Subject: [PATCH] Fix blunder when implementing new -a behavior: somehow I did not test properly and made a really dumb syntax error for assigning $APP a string value to overwrite the old defaults --- make_ncep_libs.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/make_ncep_libs.sh b/make_ncep_libs.sh index 2639261..4eb7b96 100755 --- a/make_ncep_libs.sh +++ b/make_ncep_libs.sh @@ -69,9 +69,9 @@ if [ -z $APP ] ; then APP=0; fi #APP is an optional argument # For back compatability, allow APP to be 0 (global) or 1 (all) if [ "$APP" == "0" ]; then - $APP = "global" + APP="global" elif [ "$APP" == "1" ]; then - $APP = "all" + APP="all" fi # Ensure value ($2) of variable ($1) is contained in list of validvalues ($3)