Skip to content

Commit

Permalink
Revert change to checkout for GSI-adjacent repos
Browse files Browse the repository at this point in the history
An earlier change had inadvertently stopped checking out GSI Monitor,
GSI Utils, and GLDAS when GDAS is used instead of GSI.

Refs: NOAA-EMC#966
  • Loading branch information
WalterKolczynski-NOAA committed Sep 20, 2022
1 parent 33d31df commit 6f3607d
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions sorc/checkout.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6f3607d

Please sign in to comment.