Skip to content

Commit

Permalink
Correct if-block syntax in config.postsnd and config.wavepostbndpnt a…
Browse files Browse the repository at this point in the history
…fter testing setup scripts

Refs: #238
  • Loading branch information
KateFriedman-NOAA committed Mar 8, 2021
1 parent a1edf0d commit 729631d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion parm/config/config.postsnd
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ echo "BEGIN: config.postsnd"

export POSTSNDSH=$HOMEgfs/jobs/JGFS_ATMOS_POSTSND
export ENDHOUR=180
if [ $FHMAX_GFS -lt $ENDHOUR ] ; then export ENDHOUR=$FHMAX_GFS ; fi
if [[ "$FHMAX_GFS" -lt "$ENDHOUR" ]] ; then export ENDHOUR=$FHMAX_GFS ; fi

echo "END: config.postsnd"
2 changes: 1 addition & 1 deletion parm/config/config.wavepostbndpnt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ echo "BEGIN: config.wavepostbndpnt"
. $EXPDIR/config.resources wavepostbndpnt

export FHMAX_WAV_IBP=180
if [ $FHMAX_GFS -lt $FHMAX_WAV_IBP ] ; then export FHMAX_WAV_IBP=$FHMAX_GFS ; fi
if [[ "$FHMAX_GFS" -lt "$FHMAX_WAV_IBP" ]] ; then export FHMAX_WAV_IBP=$FHMAX_GFS ; fi

echo "END: config.wavepostbndpnt"

1 comment on commit 729631d

@RobertoPadilla-NOAA
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@KateFriedman-NOAA Thanks Kate!

Please sign in to comment.