diff --git a/bin/.gitignore b/bin/.gitignore new file mode 100644 index 00000000..275d77dd --- /dev/null +++ b/bin/.gitignore @@ -0,0 +1,2 @@ +.cask +deploy_key diff --git a/bin/deploy.sh b/bin/deploy.sh index 5d3fcaa2..adc2db07 100755 --- a/bin/deploy.sh +++ b/bin/deploy.sh @@ -60,6 +60,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 deploy_key.enc -out deploy_key -d chmod 600 deploy_key eval `ssh-agent -s` diff --git a/bin/deploy_key.enc b/bin/deploy_key.enc index a3930cd4..96c9fe96 100644 Binary files a/bin/deploy_key.enc and b/bin/deploy_key.enc differ