From 2979d222312f7b057fe5be6b1d835e0291a7af7d Mon Sep 17 00:00:00 2001 From: Aminda Suomalainen Date: Tue, 24 Dec 2024 09:32:26 +0200 Subject: [PATCH] don't init submodules --- install | 3 ++- install-on-tails.bash | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/install b/install index ae08181c..6a8c47b0 100755 --- a/install +++ b/install @@ -93,7 +93,8 @@ chmod a+xr chmod bash -x ./chmod & # The submodules contain nice things such as fonts -git submodule update --init & +git submodule update & +git gc & # Aforementioned git template directory and pre-commit if hash pre-commit 2> /dev/null; then diff --git a/install-on-tails.bash b/install-on-tails.bash index e988edcb..8e9a0601 100755 --- a/install-on-tails.bash +++ b/install-on-tails.bash @@ -49,7 +49,8 @@ if [ -d "$SHELL_THINGS_REPO" ]; then git fetch --all git checkout -b cxefa origin/cxefa > /dev/null 2>&1 git pull - git submodule update --init + git submodule update & + git gc & git config --global gpg.ssh.allowedSignersFile "$SHELL_THINGS_REPO/submodules/ssh-allowed_signers/allowed_signers" sleep 3 git verify-commit HEAD || exit 1