]> arthur.barton.de Git - netdata.git/commitdiff
Don't pollute tree with ssh-key ready indicator
authorPhilip Whineray <phil@firehol.org>
Fri, 16 Dec 2016 10:21:39 +0000 (10:21 +0000)
committerPhilip Whineray <phil@firehol.org>
Fri, 16 Dec 2016 10:21:39 +0000 (10:21 +0000)
.travis/decrypt-if-have-key
.travis/deploy-if-have-key

index b585d12c1e021d25db6eee7c055249f7367be69f..71dcb5c3f38a63645de48ba15fabca63f8e6a3bd 100755 (executable)
@@ -29,7 +29,7 @@ then
   chmod 600 .travis/travis_rsa
   ssh-add .travis/travis_rsa
   rm -f .travis/travis_rsa
-  touch  .travis/travis_rsa.ready
+  touch /tmp/ssh-key-loaded
 else
   echo "No ssh key present - skipping agent start"
 fi
index 6c40e25705db72c6abe22c40c859f29ab1d84a23..50e69b939da6ac7e8fffd76054f75f1b1a35f0c1 100755 (executable)
@@ -4,7 +4,7 @@ set -e
 
 # Deploy tar-files and checksums to the firehol website
 
-if [ ! -f .travis/travis_rsa.ready ]
+if [ ! -f /tmp/ssh-key-loaded ]
 then
   echo "No ssh key decrypted - skipping deployment to website"
   exit 0