Skip to content

Commit f563528

Browse files
Update JGLOBAL_FORECAST for octal error (NOAA-EMC#2295)
Add "10#" to ENSMEM value > 0 check to handle octal errors.
1 parent 801058f commit f563528

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jobs/JGLOBAL_FORECAST

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /usr/bin/env bash
22

33
source "${HOMEgfs}/ush/preamble.sh"
4-
if (( ${ENSMEM:-0} > 0 )); then
4+
if (( 10#${ENSMEM:-0} > 0 )); then
55
source "${HOMEgfs}/ush/jjob_header.sh" -e "efcs" -c "base fcst efcs"
66
else
77
source "${HOMEgfs}/ush/jjob_header.sh" -e "fcst" -c "base fcst"

0 commit comments

Comments
 (0)