Skip to content

Commit

Permalink
Remove .enc extension from release script (kedgeproject#389)
Browse files Browse the repository at this point in the history
Removes the .enc extension from the bash script for updating / syncing
docs.
  • Loading branch information
cdrage committed Oct 26, 2017
1 parent beb02ce commit cf980be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/sync-docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ ENC_KEY=$encrypted_91569b511922_key
ENC_IV=$encrypted_91569b511922_iv

# decrypt the private key
openssl aes-256-cbc -K $ENC_KEY -iv $ENC_IV -in "$DOCS_KEY.enc" -out "$DOCS_KEY" -d
openssl aes-256-cbc -K $ENC_KEY -iv $ENC_IV -in "$DOCS_KEY" -out "$DOCS_KEY" -d
chmod 600 "$DOCS_KEY"
eval `ssh-agent -s`
ssh-add "$DOCS_KEY"
Expand Down

0 comments on commit cf980be

Please sign in to comment.