From ef2cbb8bc1fb2d8e6c9511f4cf43749b4cfbd26e Mon Sep 17 00:00:00 2001 From: Kate Friedman Date: Fri, 17 Nov 2023 15:34:35 -0500 Subject: [PATCH] Adjust modules in post.sh for WCOSS2 On WCOSS2 the grib_util module is named a bit different and needs the libjpeg module loaded beforehand. --- jobs/rocoto/post.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/jobs/rocoto/post.sh b/jobs/rocoto/post.sh index ca8bd7aa24..5dc66926c9 100755 --- a/jobs/rocoto/post.sh +++ b/jobs/rocoto/post.sh @@ -20,11 +20,13 @@ module load prod_util if [[ "${MACHINE_ID}" = "wcoss2" ]]; then module load cray-pals module load cfp + module load libjpeg + module load grib_util else # shellcheck disable=SC2154 export UTILROOT="${prod_util_ROOT}" + module load grib-util fi -module load grib-util module load wgrib2 export WGRIB2=wgrib2 # End hack