anastasis

Credential backup and recovery protocol and service
Log | Files | Refs | Submodules | README | LICENSE

commit 554d7d14c3e838e8cbe33485c862aefcb5409af2
parent be5d82611fcd17a86683b03490fa3c4539549197
Author: Florian Dold <florian@dold.me>
Date:   Mon,  6 Oct 2025 15:35:49 +0200

bootstrap: do not use --remote to update submodule

Doing so will lead to unreproducible builds.

Diffstat:
Mbootstrap | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/bootstrap b/bootstrap @@ -6,9 +6,8 @@ if ! git --version >/dev/null; then fi echo "$0: Updating submodules" -echo | git submodule update --init --force --remote -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: