From bb7471f2e414c5bd7cdc72cabc7e49444d5668e0 Mon Sep 17 00:00:00 2001 From: "kate.friedman" Date: Wed, 12 Apr 2023 11:48:15 -0500 Subject: [PATCH] Updates to jobs/JGDAS_FIT2OBS - Revert double quotes to single quotes for COM_INF, need to pass it in using single quotes, it can't be evaluated at this stage. - Change CDUMP to RUN based on reviewer comments. Refs #1405 --- jobs/JGDAS_FIT2OBS | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/jobs/JGDAS_FIT2OBS b/jobs/JGDAS_FIT2OBS index 8409699222..4c7991ee1d 100755 --- a/jobs/JGDAS_FIT2OBS +++ b/jobs/JGDAS_FIT2OBS @@ -16,13 +16,13 @@ export vday=$(echo "${xdate}" | cut -c1-8) export vcyc=$(echo "${xdate}" | cut -c9-10) export COM_INA=${ROTDIR}/gdas.${vday}/${vcyc}/atmos -export COM_INF="$ROTDIR/vrfyarch/gfs.$fdy/$fzz" +export COM_INF='$ROTDIR/vrfyarch/gfs.$fdy/$fzz' export COM_PRP=${ROTDIR}/gdas.${vday}/${vcyc}/obs -export PRPI=${COM_PRP}/${CDUMP}.t${vcyc}z.prepbufr -export sig1=${COM_INA}/${CDUMP}.t${vcyc}z.atmanl.nc -export sfc1=${COM_INA}/${CDUMP}.t${vcyc}z.atmanl.nc -export CNVS=${COM_INA}/${CDUMP}.t${vcyc}z.cnvstat +export PRPI=${COM_PRP}/${RUN}.t${vcyc}z.prepbufr +export sig1=${COM_INA}/${RUN}.t${vcyc}z.atmanl.nc +export sfc1=${COM_INA}/${RUN}.t${vcyc}z.atmanl.nc +export CNVS=${COM_INA}/${RUN}.t${vcyc}z.cnvstat export OUTPUT_FILETYPE=${OUTPUT_FILETYPE:-netcdf}