Skip to content

Commit

Permalink
Issue NOAA-EMC#94 fix for failing silently
Browse files Browse the repository at this point in the history
  • Loading branch information
wx21rph authored and wx21rph committed Oct 1, 2020
1 parent 8f79b61 commit 4c488d3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion jobs/JGLOBAL_WAVE_GEMPAK
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ postmsg "$jlogfile" "$msg"
########################################################
# Execute the script.
${HOMEgfs}/scripts/exgfs_wave_nawips.sh

status=$?
[[ $status -ne 0 ]] && exit $status
###################################
# Remove temp directories
if [ "$KEEPDATA" != "YES" ]; then
Expand All @@ -55,3 +56,4 @@ if [ "$KEEPDATA" != "YES" ]; then
fi

date
exit 0
4 changes: 3 additions & 1 deletion jobs/JGLOBAL_WAVE_PRDGEN_BULLS
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ env
# Execute the Script

$HOMEgfs/scripts/exgfs_wave_prdgen_bulls.sh

status=$?
[[ $status -ne 0 ]] && exit $status
###################################
# Remove temp directories

Expand All @@ -52,4 +53,5 @@ if [ "$KEEPDATA" != "YES" ]; then
rm -rf $DATA
fi
date
exit 0

4 changes: 3 additions & 1 deletion jobs/JGLOBAL_WAVE_PRDGEN_GRIDDED
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ export cycle=${cycle:-t${cyc}z}
# Execute the Script
###################################
$HOMEgfs/scripts/exgfs_wave_prdgen_gridded.sh

status=$?
[[ $status -ne 0 ]] && exit $status
###################################
# Remove temp directories
###################################
Expand All @@ -55,4 +56,5 @@ if [ "$KEEPDATA" != "YES" ]; then
rm -rf $DATA
fi
date
exit 0

0 comments on commit 4c488d3

Please sign in to comment.