Skip to content

Commit

Permalink
Add shellcheck disable for SC1091 in JGDAS_ATMOS_GLDAS
Browse files Browse the repository at this point in the history
  • Loading branch information
KateFriedman-NOAA committed Sep 19, 2022
1 parent dbf588d commit e0e271a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions jobs/JGDAS_ATMOS_GLDAS
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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}"

Expand Down

0 comments on commit e0e271a

Please sign in to comment.