From cc631c1fd28fb7823c0d54a38b24a341a2206289 Mon Sep 17 00:00:00 2001 From: Aminda Suomalainen Date: Sun, 11 Aug 2024 08:19:55 +0300 Subject: [PATCH] install: ssh-allowed_signers moved too! I think I got distracted or something here as I only changed the path, not clone urls or destinations --- install | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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