From c5eb28ea0476cf8ce84c06f54866f404ca58c0cb Mon Sep 17 00:00:00 2001 From: Simon Studer Date: Sat, 4 Oct 2025 20:44:05 +0200 Subject: [PATCH] add comment on default ssh key --- scripts/02_setup_programs.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/02_setup_programs.sh b/scripts/02_setup_programs.sh index 891dac7..896307b 100755 --- a/scripts/02_setup_programs.sh +++ b/scripts/02_setup_programs.sh @@ -30,10 +30,10 @@ sudo pacman -S --noconfirm xclip sudo pacman -S --noconfirm lazygit # ssh key -if [ -f "~/.ssh/id_ed25519" ] ; then - echo "ed25519 ssh key exists already" +if [ -f "~/.ssh/id_ed25519" ]; then + echo "ed25519 ssh key exists already" else - ssh-keygen -t ed25519 -b 4096 -f ~/.ssh/id_ed25519 -N "" <<< n + ssh-keygen -t ed25519 -b 4096 -f ~/.ssh/id_ed25519 -N "" -C "default" <<