From 6f3607dee6259d80f9ff6135f73b79922b300be4 Mon Sep 17 00:00:00 2001 From: "Walter.Kolczynski" Date: Tue, 20 Sep 2022 19:37:22 +0000 Subject: [PATCH] Revert change to checkout for GSI-adjacent repos An earlier change had inadvertently stopped checking out GSI Monitor, GSI Utils, and GLDAS when GDAS is used instead of GSI. Refs: #966 --- sorc/checkout.sh | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/sorc/checkout.sh b/sorc/checkout.sh index 9308599ecf..8271a98dba 100755 --- a/sorc/checkout.sh +++ b/sorc/checkout.sh @@ -158,15 +158,18 @@ checkout "verif-global.fd" "https://github.com/NOAA-EMC/EMC_verif-global.git" if [[ $checkout_gsi == "YES" ]]; then checkout "gsi_enkf.fd" "https://github.com/NOAA-EMC/GSI.git" "67f5ab4"; errs=$((errs + $?)) - checkout "gsi_utils.fd" "https://github.com/NOAA-EMC/GSI-Utils.git" "322cc7b"; errs=$((errs + $?)) - checkout "gsi_monitor.fd" "https://github.com/NOAA-EMC/GSI-Monitor.git" "acf8870"; errs=$((errs + $?)) - checkout "gldas.fd" "https://github.com/NOAA-EMC/GLDAS.git" "fd8ba62"; errs=$((errs + $?)) fi if [[ $checkout_gdas == "YES" ]]; then checkout "gdas.cd" "https://github.com/NOAA-EMC/GDASApp.git" "5952c9d"; errs=$((errs + $?)) fi +if [[ $checkout_gsi == "YES" || $checkout_gdas == "YES" ]]; then + checkout "gsi_utils.fd" "https://github.com/NOAA-EMC/GSI-Utils.git" "322cc7b"; errs=$((errs + $?)) + checkout "gsi_monitor.fd" "https://github.com/NOAA-EMC/GSI-Monitor.git" "acf8870"; errs=$((errs + $?)) + checkout "gldas.fd" "https://github.com/NOAA-EMC/GLDAS.git" "fd8ba62"; errs=$((errs + $?)) +fi + if [[ $checkout_wafs == "YES" ]]; then checkout "gfs_wafs.fd" "https://github.com/NOAA-EMC/EMC_gfs_wafs.git" "014a0b8"; errs=$((errs + $?)) fi