Skip to content

Commit

Permalink
Remove remnant WAVE_RUN from archive (#1556)
Browse files Browse the repository at this point in the history
`$WAVE_RUN` is no longer used in workflow, but one reference remained
in the archive job, which would cause failures. The conditional did
not need to be replaced by `$RUN` since `$RUN` has already been checked
at that point.

Fixes #1548
  • Loading branch information
WalterKolczynski-NOAA authored May 2, 2023
1 parent f2ea92b commit 810071b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/exglobal_archive.sh
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ if [[ ${HPSSARCH} = "YES" || ${LOCALARCH} = "YES" ]]; then
fi
fi

if [ "${DO_WAVE}" = "YES" ] && [ "${WAVE_RUN}" != "gdas" ]; then
if [ "${DO_WAVE}" = "YES" ]; then
targrp_list="${targrp_list} gfswave"
fi

Expand Down

0 comments on commit 810071b

Please sign in to comment.