From 7be6e73709ed5b69d0513c2bf43c7dc6ab1a0473 Mon Sep 17 00:00:00 2001 From: tomeichlersmith Date: Wed, 14 Aug 2024 09:58:19 -0500 Subject: [PATCH] dont recurse into submodules when checking the state all of the ldmx-sw submodules are now being treated as separate projects and so we only care about hte specific version of the submodule and not the specific versions of any of the submodule's submodules. --- scripts/state | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/state b/scripts/state index 18bda8109..f65c1837e 100755 --- a/scripts/state +++ b/scripts/state @@ -10,8 +10,8 @@ set -o errexit set -o nounset -git submodule foreach --recursive git fetch --tags -git submodule status --recursive | awk '{ +git submodule foreach git fetch --tags +git submodule status | awk '{ # git submodule status returns lines of the form # () # where is either the tag, branch name, or something else