From 14afde50ae67ff7df236576f2c0b90150fb33b0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ensar=20Saraj=C4=8Di=C4=87?= Date: Sun, 3 Oct 2021 00:40:02 +0200 Subject: [PATCH] Fix public key copy command in Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 71f8af6..ae692c7 100644 --- a/Makefile +++ b/Makefile @@ -228,7 +228,7 @@ create_personal_ssh_github_key: check_os prepare_ssh_dir @echo "Personal GitHub key created!" @echo "Copy public key by running:" @echo "" - @echo "cat $(PERSONAL_SSH_KEYS_HOME)/id_rsa_github | $(COPY_TOOL)" + @echo "cat $(PERSONAL_SSH_KEYS_HOME)/id_rsa_github.pub | $(COPY_TOOL)" @echo "" @echo "Open: https://github.com/settings/ssh/new" @echo "and paste copied public key"