Skip to content

Commit

Permalink
minor: don't fail if no key exists
Browse files Browse the repository at this point in the history
  • Loading branch information
arichnad committed Jan 9, 2014
1 parent aebf42a commit a3fc9ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion up-first.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -e #exit on failure

echo 'info: attempting to delete localhost:2222 from your known hosts'
ssh-keygen -f ~/.ssh/known_hosts -R '[localhost]:2222' 2>/dev/null
ssh-keygen -f ~/.ssh/known_hosts -R '[localhost]:2222' 2>/dev/null || true

./up.sh

Expand Down

0 comments on commit a3fc9ae

Please sign in to comment.