From 60c5802cad295d54c917f74c5be24b4fab6edbba Mon Sep 17 00:00:00 2001 From: AntonMFernando Date: Mon, 13 Jan 2025 10:43:47 -0500 Subject: [PATCH] modified OUT_GRID --- jobs/JGLOBAL_ARCHIVE | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jobs/JGLOBAL_ARCHIVE b/jobs/JGLOBAL_ARCHIVE index b954758eca..e37dc886a9 100755 --- a/jobs/JGLOBAL_ARCHIVE +++ b/jobs/JGLOBAL_ARCHIVE @@ -52,7 +52,7 @@ done ############################################################### # Create an array of output wave grids to process -export OUT_GRIDS="" +export WAVE_OUT_GRIDS="" if [[ "${DO_WAVE}" == "YES" ]]; then # Create a variable for output wave grids to process if [[ -n "${wavepostGRD}" || -n "${waveinterpGRD}" ]]; then @@ -63,10 +63,10 @@ if [[ "${DO_WAVE}" == "YES" ]]; then "COMIN_WAVE_GRID_${GRDNAME}_${GRDRES}:COM_WAVE_GRID_RES_TMPL" grids_arr+=("${GRDNAME}.${GRDRES}") done - export OUT_GRIDS="${grids_arr[*]}" + export WAVE_OUT_GRIDS="${grids_arr[*]}" else echo "Both wavepostGRD and waveinterpGRD are empty. No grids to process." - export OUT_GRIDS="" + export WAVE_OUT_GRIDS="" fi fi ###############################################################