Skip to content

Commit

Permalink
Fix Linter braces ${...} error in tests/run_test.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
NickSzapiro-NOAA authored Aug 24, 2024
1 parent 29293f5 commit 9c70853
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/run_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ if [[ ${FV3} == true ]]; then
fi

# NoahMP table file
if [[ $BMIC == .true. ]]; then
if [[ ${BMIC} == .true. ]]; then
cp "${PATHRT}/parm/noahmptable-gefs.tbl" noahmptable.tbl
else
cp "${PATHRT}/parm/noahmptable.tbl" .
Expand All @@ -276,7 +276,7 @@ if [[ ${CPLWAV} == .true. ]]; then
fi

if [[ ${CPLCHM} == .true. ]]; then
if [[ $BMIC == .true. ]]; then
if [[ ${BMIC} == .true. ]]; then
cp "${PATHRT}"/parm/gocart/gefs/*.rc .
atparse < "${PATHRT}/parm/gocart/gefs/AERO_HISTORY.rc.IN" > AERO_HISTORY.rc
else
Expand Down

0 comments on commit 9c70853

Please sign in to comment.