From a8bb20204bdd25c6cfb09beb00387153fc4ac195 Mon Sep 17 00:00:00 2001 From: Schuyler Cebulskie Date: Tue, 22 Nov 2016 18:34:08 -0500 Subject: [PATCH] Fix paths --- .gitignore | 2 ++ deploy/deploy.sh | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 80a6efd9c..c6e423898 100644 --- a/.gitignore +++ b/.gitignore @@ -11,6 +11,8 @@ test/auth.json test/auth.js docs/deploy/deploy_key docs/deploy/deploy_key.pub +deploy/deploy_key +deploy/deploy_key.pub # Miscellaneous .tmp/ diff --git a/deploy/deploy.sh b/deploy/deploy.sh index eee2336bb..cbd644ed9 100644 --- a/deploy/deploy.sh +++ b/deploy/deploy.sh @@ -45,7 +45,7 @@ ENCRYPTED_KEY_VAR="encrypted_${ENCRYPTION_LABEL}_key" ENCRYPTED_IV_VAR="encrypted_${ENCRYPTION_LABEL}_iv" ENCRYPTED_KEY=${!ENCRYPTED_KEY_VAR} ENCRYPTED_IV=${!ENCRYPTED_IV_VAR} -openssl aes-256-cbc -K $ENCRYPTED_KEY -iv $ENCRYPTED_IV -in docs/deploy/deploy_key.enc -out deploy_key -d +openssl aes-256-cbc -K $ENCRYPTED_KEY -iv $ENCRYPTED_IV -in deploy/deploy_key.enc -out deploy_key -d chmod 600 deploy_key eval `ssh-agent -s` ssh-add deploy_key