don't init submodules

This commit is contained in:
Aminda Suomalainen 2024-12-24 09:32:26 +02:00
parent 52ee644f5f
commit 2979d22231
Signed by: Mikaela
GPG Key ID: 99392F62BAE30723
2 changed files with 4 additions and 2 deletions

View File

@ -93,7 +93,8 @@ chmod a+xr chmod
bash -x ./chmod & bash -x ./chmod &
# The submodules contain nice things such as fonts # The submodules contain nice things such as fonts
git submodule update --init & git submodule update &
git gc &
# Aforementioned git template directory and pre-commit # Aforementioned git template directory and pre-commit
if hash pre-commit 2> /dev/null; then if hash pre-commit 2> /dev/null; then

View File

@ -49,7 +49,8 @@ if [ -d "$SHELL_THINGS_REPO" ]; then
git fetch --all git fetch --all
git checkout -b cxefa origin/cxefa > /dev/null 2>&1 git checkout -b cxefa origin/cxefa > /dev/null 2>&1
git pull 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" git config --global gpg.ssh.allowedSignersFile "$SHELL_THINGS_REPO/submodules/ssh-allowed_signers/allowed_signers"
sleep 3 sleep 3
git verify-commit HEAD || exit 1 git verify-commit HEAD || exit 1