Skip to content

Commit

Permalink
Corrects missing local variable reference (#2023)
Browse files Browse the repository at this point in the history
Fixes missing `$` in variable reference in archive job.

Resolves #2022
  • Loading branch information
HenryRWinterbottom authored Nov 2, 2023
1 parent 241742b commit 247cdf8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ush/hpssarch_gen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,8 @@ if [[ ${type} = "gfs" ]]; then
echo "${COM_ATMOS_GRIB_0p25/${ROTDIR}\//}/${head}pgrb2b.0p25.f${fhr}"
echo "${COM_ATMOS_GRIB_0p25/${ROTDIR}\//}/${head}pgrb2b.0p25.f${fhr}.idx"
if [[ -s "${COM_ATMOS_GRIB_1p00}/${head}pgrb2b.1p00.f${fhr}" ]]; then
echo "${COM_ATMOS_GRIB_1p00/${ROTDIR}\//}/{head}pgrb2b.1p00.f${fhr}"
echo "${COM_ATMOS_GRIB_1p00/${ROTDIR}\//}/{head}pgrb2b.1p00.f${fhr}.idx"
echo "${COM_ATMOS_GRIB_1p00/${ROTDIR}\//}/${head}pgrb2b.1p00.f${fhr}"
echo "${COM_ATMOS_GRIB_1p00/${ROTDIR}\//}/${head}pgrb2b.1p00.f${fhr}.idx"
fi
} >> "${DATA}/gfs_pgrb2b.txt"
fi
Expand Down

0 comments on commit 247cdf8

Please sign in to comment.