Skip to content
This repository was archived by the owner on Apr 8, 2021. It is now read-only.

Commit d4b4003

Browse files
committed
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
1 parent 9e8cf86 commit d4b4003

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

make_ncep_libs.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ if [ -z $APP ] ; then APP=0; fi #APP is an optional argument
6969

7070
# For back compatability, allow APP to be 0 (global) or 1 (all)
7171
if [ "$APP" == "0" ]; then
72-
$APP = "global"
72+
APP="global"
7373
elif [ "$APP" == "1" ]; then
74-
$APP = "all"
74+
APP="all"
7575
fi
7676

7777
# Ensure value ($2) of variable ($1) is contained in list of validvalues ($3)

0 commit comments

Comments
 (0)