commit a5ac817a97d701bc3d0381abcbb955e3c75e78cc
parent b1f0c3130c3f6cec9170827ac77187ae160c6b7c
Author: Florian Dold <florian@dold.me>
Date: Mon, 6 Oct 2025 15:37:37 +0200
boostrap: do not update submodules with --remote
Doing so leads to non-reproducible builds
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bootstrap b/bootstrap
@@ -9,7 +9,7 @@ if ! git --version >/dev/null; then
fi
echo "$0: Updating submodules"
-echo | git submodule update --init --force --remote
+git submodule update --init --force
# This is more portable than `which' but comes with
# the caveat of not(?) properly working on busybox's ash: