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

Commit 53680b0

Browse files
authored
Merge pull request #9 from mkavulich/fix_new_option_blunder
Fix blunder when implementing new -a behavior
2 parents 9e8cf86 + d4b4003 commit 53680b0

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)