diff --git a/jobs/JGDAS_ATMOS_GLDAS b/jobs/JGDAS_ATMOS_GLDAS index a60a04fe36..dde1088e54 100755 --- a/jobs/JGDAS_ATMOS_GLDAS +++ b/jobs/JGDAS_ATMOS_GLDAS @@ -11,8 +11,9 @@ export EXPDIR=${EXPDIR:-${HOMEgfs}/parm/config} configs="base gldas" config_path=${EXPDIR:-${NWROOT}/gfs.${gfs_ver}/parm/config} for config in ${configs}; do - # shellcheck source=parm/config/config.${config} + # shellcheck disable=SC1091 . "${config_path}/config.${config}" + # shellcheck disable= status=$? [[ ${status} -ne 0 ]] && exit "${status}" done @@ -34,8 +35,9 @@ fi ########################################## # Source machine runtime environment ########################################## -# shellcheck source=env/WCOSS2.env +# shellcheck disable=SC1091 . "${HOMEgfs}/env/${machine:?}.env" gldas +# shellcheck disable= status=$? [[ ${status} -ne 0 ]] && exit "${status}"