From fea8c211faf26b295aee56237f36a1cffe9b1dad Mon Sep 17 00:00:00 2001 From: Andrea Cavalli Date: Sun, 23 Aug 2020 21:23:06 +0200 Subject: [PATCH] Travis - fix base64 decoding for mac osx --- travis/build_success.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/travis/build_success.sh b/travis/build_success.sh index d215307..ca29169 100755 --- a/travis/build_success.sh +++ b/travis/build_success.sh @@ -17,7 +17,7 @@ fi # Setup ssh echo "Setup ssh." [ -d ~/.ssh ] || mkdir -p ~/.ssh -echo "$GIT_IGN_TRAVIS_DEPLOY_PRIVATE_KEY" | base64 -d > ~/.ssh/id_rsa || true +echo "$GIT_IGN_TRAVIS_DEPLOY_PRIVATE_KEY" | base64 --decode > ~/.ssh/id_rsa || true chmod 600 ~/.ssh/id_rsa || true ssh-keyscan ssh.git.ignuranza.net >> $HOME/.ssh/known_hosts || true ssh-keyscan git.ignuranza.net >> $HOME/.ssh/known_hosts || true