From 3d2d9c251b1d6a3d5b1629d0acb3cb6cb1a433dd Mon Sep 17 00:00:00 2001 From: Moti Zilberman Date: Sat, 4 Jun 2016 03:49:49 +0300 Subject: [PATCH] chore(auto-deploy-docs): Fix another typo in deploy key path --- auto-deploy-docs/doc-deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auto-deploy-docs/doc-deploy.sh b/auto-deploy-docs/doc-deploy.sh index ed2463f..ccdb1c4 100644 --- a/auto-deploy-docs/doc-deploy.sh +++ b/auto-deploy-docs/doc-deploy.sh @@ -57,7 +57,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 auto_deploy_docs/deploy_key.enc -out deploy_key -d +openssl aes-256-cbc -K $ENCRYPTED_KEY -iv $ENCRYPTED_IV -in auto-deploy-docs/deploy_key.enc -out deploy_key -d chmod 600 deploy_key eval `ssh-agent -s` ssh-add deploy_key