Skip to content

Commit

Permalink
Add overwrite to creat experiment in BASH CI (#2676)
Browse files Browse the repository at this point in the history
This is a quick hotfix to the CI BASH driver script adding `--overwrite`
to create experiment script to avoid errors from restarting an
experiment.
  • Loading branch information
TerrenceMcGuinness-NOAA authored Jun 11, 2024
1 parent e7909af commit 23a8d88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/scripts/driver.sh
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ for pr in ${pr_list}; do
} >> "${output_ci}"
continue
fi
"${HOMEgfs}/workflow/create_experiment.py" --yaml "${HOMEgfs}/ci/cases/pr/${case}.yaml" > "${LOGFILE_PATH}" 2>&1
"${HOMEgfs}/workflow/create_experiment.py" --yaml "${HOMEgfs}/ci/cases/pr/${case}.yaml" --overwrite > "${LOGFILE_PATH}" 2>&1
ci_status=$?
set -e
if [[ ${ci_status} -eq 0 ]]; then
Expand Down

0 comments on commit 23a8d88

Please sign in to comment.