Skip to content

Commit

Permalink
Update jobs/rocoto/atmos_products.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
aerorahul authored Dec 22, 2023
1 parent 9bc49b5 commit 108b1b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jobs/rocoto/atmos_products.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ for fhr in "${fhrs[@]}"; do
# The analysis fhr is -001. Performing math on negative, leading 0 integers is tricky.
# The negative needs to be in front of "10#", so do some regex magic to make it happen.
fhr="10#${fhr}"
fhr=$( echo "${fhr}" | sed "s/10#-/-10#/" )
fhr=${fhr//10#-/-10#}
export FORECAST_HOUR=$(( fhr ))
"${HOMEgfs}/jobs/JGLOBAL_ATMOS_PRODUCTS"
status=$?
Expand Down

0 comments on commit 108b1b2

Please sign in to comment.