Skip to content

Commit

Permalink
dont recurse into submodules when checking the state
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
tomeichlersmith committed Aug 14, 2024
1 parent 640596b commit 7be6e73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/state
Original file line number Diff line number Diff line change
Expand Up @@ -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
# <commit> <submodule> (<version>)
# where <version> is either the tag, branch name, or something else
Expand Down

0 comments on commit 7be6e73

Please sign in to comment.