1
0
mirror of https://github.com/danbee/mac-setup synced 2025-03-04 08:39:10 +00:00

Fix keygen

This commit is contained in:
Daniel Barber 2019-04-15 22:02:18 -04:00
parent abad92f2d9
commit b1c5cf8808
Signed by: danbarber
GPG Key ID: 931D8112E0103DD8

View File

@ -16,11 +16,11 @@ if [ ! -f "$HOME/.ssh/id_ed25519.pub" ]; then
step "Generating SSH key" step "Generating SSH key"
ssh-keygen -t ed25519 -f "$HOME/.ssh/id_ed25519" ssh-keygen -t ed25519 -f "$HOME/.ssh/id_ed25519"
echo "Copy and paste the public portion of the key (below) to GitHub" echo "Copy and paste the public portion of the key (below) to GitHub"
echo "and press a key when done." echo "============ Public key ============="
echo "=========== Public key =============="
cat ~/.ssh/id_ed25519.pub cat ~/.ssh/id_ed25519.pub
echo "=====================================" echo "====================================="
read -n 1 -s echo "Press a key when done."
read -n 1
fi fi
# Install Homebrew # Install Homebrew