diff --git a/install b/install index bcc0d53f..60f1a591 100755 --- a/install +++ b/install @@ -5,15 +5,15 @@ set -x # If my allowed_signers are present, use them, if not, clone them, and try # again. The gitconfig expects them here. -if [ -d ~/src/gitea.blesmrt.net/Mikaela/ssh-allowed_signers ]; then +if [ -d ~/src/codeberg.org/Aminda/ssh-allowed_signers ]; then echo "git config --global gpg.ssh.allowedSignersFile ~/src/codeberg.org/Aminda/ssh-allowed_signers/allowed_signers" git verify-commit HEAD || exit 1 sleep 3 else echo "Keys not found, cloning..." # -vp - verbose, parent. This comment won't be repeated. - mkdir -vp ~/src/gitea.blesmrt.net/Mikaela/ - git clone https://gitea.blesmrt.net/Mikaela/ssh-allowed_signers.git ~/src/gitea.blesmrt.net/Mikaela/ssh-allowed_signers + mkdir -vp ~/src/codeberg.org/Aminda/ + git clone https://codeberg.org/Aminda/ssh-allowed_signers.git ~/src/codeberg.org/Aminda/ssh-allowed_signers echo "git config --global gpg.ssh.allowedSignersFile ~/src/codeberg.org/Aminda/ssh-allowed_signers/allowed_signers" git verify-commit HEAD || exit 1 sleep 3