Skip to content

Commit

Permalink
Fixed URL for ssh-copy-id.sh.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Mingolelli committed Sep 9, 2014
1 parent 2e005a0 commit 863c93f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ fi
if git ls-files >& /dev/null && [[ -f ssh-copy-id.sh ]]; then
$SUDO cp ssh-copy-id.sh /usr/local/bin/ssh-copy-id || { echo "Failed to install ssh-copy-id into /usr/local/bin."; exit 1; }
else
$SUDO curl -L https://raw.github.com/beautifulcode/ssh-copy-id-for-OSX/master/ssh-copy-id.sh -o /usr/local/bin/ssh-copy-id || { echo "Failed to install ssh-copy-id into /usr/local/bin."; exit 1; }
$SUDO curl -L https://raw.githubusercontent.com/beautifulcode/ssh-copy-id-for-OSX/master/ssh-copy-id.sh -o /usr/local/bin/ssh-copy-id || { echo "Failed to install ssh-copy-id into /usr/local/bin."; exit 1; }
$SUDO chmod +x /usr/local/bin/ssh-copy-id || { echo "Failed to install ssh-copy-id into /usr/local/bin."; exit 1; }
fi
echo "Installed ssh-copy-id into /usr/local/bin."; exit 0;

0 comments on commit 863c93f

Please sign in to comment.