From 5f01937d69bf650f3c7341de32edd77e36176b87 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Sun, 12 Feb 2017 19:09:10 +0100 Subject: [PATCH] [TRAVIS] Be sure that ssh key has correct file rights. (Bis) The ssh key right mode must be 600. (644 is for public key...) --- travis/deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/travis/deploy.sh b/travis/deploy.sh index ee01d9f..703372e 100755 --- a/travis/deploy.sh +++ b/travis/deploy.sh @@ -2,7 +2,7 @@ SSH_KEY=travis/travisci_builder_id_key -chmod 644 ${SSH_KEY} +chmod 600 ${SSH_KEY} BASE_DIR="BUILD_${BUILD_TARGET}_static/INSTALL"