bin/add-ssh-keys: Use my Launchpad key when triggered without any args

Gonna ditch that former GH key to use only one key, but
the problem is hackers may can also push to my Launchpad
repos undetected with SSH, but don't worry about that because
password-protection is enabled as usual.

Signed-off-by: Andrei Jiroh Eugenio Halili <andreijiroh@madebythepins.tk>
This commit is contained in:
Andrei Jiroh Eugenio Halili 2021-04-16 00:26:07 +08:00
parent 8a2f5e6eba
commit 5f6b778fe1
Signed by: ajhalili2006
GPG Key ID: A30EBE40AD856D88
1 changed files with 1 additions and 1 deletions

View File

@ -5,6 +5,6 @@ if [[ $@ != "" ]]; then
ssh-add $HOME/.ssh/$@
elif [[ $@ == "" ]]; then
echo "==> Adding all of your SSH keys..."
ssh-add ~/.ssh/github-personal
#ssh-add ~/.ssh/github-personal
ssh-add ~/.ssh/launchpad
fi