diff options
author | Florian Dold <florian@dold.me> | 2024-06-27 23:41:48 +0200 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2024-06-27 23:42:36 +0200 |
commit | 32c85f4615346c3e9b7835139611246942e117f6 (patch) | |
tree | 9baaac8cf280c0efd934b1b2cca64aeb7e769e73 /bootstrap | |
parent | ebf5592f77b94d473c2a54468133a46f2dcc8c53 (diff) |
do not update submodules with bootstrap
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -9,7 +9,9 @@ if ! git --version >/dev/null; then fi echo "$0: Updating submodules" -echo | git submodule update --init --force --remote +# Caution: We do NOT want to fetch the latest version with --remote, +# but instead always the one that's recorded in the repository. +echo | git submodule update --init --force # Generate based on pinned submodule ./contrib/gana-generate.sh |