Skip to content

Commit

Permalink
Fix gempak stub
Browse files Browse the repository at this point in the history
  • Loading branch information
WalterKolczynski-NOAA committed Jan 14, 2025
1 parent 48c1acb commit bae8d2d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions jobs/rocoto/gempak.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ export job="gempak"
# shellcheck disable=SC2153
IFS=', ' read -r -a fhr_list <<< "${FHR_LIST}"

export FORECAST_HOUR jobid
for FORECAST_HOUR in "${fhr_list[@]}"; do
fhr3=$(printf '%03d' "${FORECAST_HOUR}")
jobid="${job}_f${fhr3}.$$"
export FHR3 jobid
for fhr in "${fhr_list[@]}"; do
FHR3=$(printf '%03d' "${fhr}")
jobid="${job}_f${FHR3}.$$"
###############################################################
# Execute the JJOB
###############################################################
Expand Down

0 comments on commit bae8d2d

Please sign in to comment.