Skip to content

Commit

Permalink
Fix gdas build_opts. NOAA-EMC#1978
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidHuber-NOAA committed Oct 31, 2023
1 parent 1a6d6ee commit 01095ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sorc/build_all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ fi
if [[ -d gdas.cd ]]; then
build_jobs["gdas"]=16
big_jobs=$((big_jobs+1))
build_opts["gfs_utils"]="${_verbose_opt}"
build_opts["gdas"]="${_verbose_opt}"
fi
if [[ -d gsi_enkf.fd ]]; then
build_jobs["gsi_enkf"]=8
Expand Down Expand Up @@ -200,7 +200,7 @@ while [[ ${builds_started} -lt ${#build_jobs[@]} ]]; do
# Do we have enough processors to run it?
if [[ ${_build_job_max} -ge $(( build_jobs[build] + procs_in_use )) ]]; then
if [[ "${build}" != "upp" ]]; then
"./build_${build}.sh" -j "${build_jobs[${build}]}" "${build_opts[${build}]}" > \
"./build_${build}.sh" -j "${build_jobs[${build}]}" "${build_opts[${build}]:-}" > \
"${logs_dir}/build_${build}.log" 2>&1 &
else
"./build_${build}.sh" "${build_opts[${build}]}" > \
Expand Down

0 comments on commit 01095ef

Please sign in to comment.