From 48d32644cd8e1846b66582f7e508598f77e39ccf Mon Sep 17 00:00:00 2001 From: Máximo Cuadros Date: Wed, 26 Apr 2017 17:00:54 +0200 Subject: travis: fix export private key --- .travis/install_key.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to '.travis/install_key.sh') diff --git a/.travis/install_key.sh b/.travis/install_key.sh index f2df1ab..95a6571 100755 --- a/.travis/install_key.sh +++ b/.travis/install_key.sh @@ -1,11 +1,9 @@ #!/bin/bash -export SSH_TEST_PRIVATE_KEY=$PWD/.travis/deploy.pem - openssl aes-256-cbc \ -K $encrypted_1477e58fe67a_key \ -iv $encrypted_1477e58fe67a_iv \ -in .travis/deploy.pem.enc \ - -out .travis/deploy.pem -d + -out $HOME/.travis/deploy.pem -d -chmod 600 .travis/deploy.pem +chmod 600 $HOME/.travis/deploy.pem -- cgit