docs(circle): fix incorrect script example

Little mistake in the example to add a ssh key for circleCi
This commit is contained in:
Nicolas Delperdange 2019-02-27 15:31:31 +01:00 committed by Pierre Vanduynslager
parent aed4ea2edc
commit e5a5867e82

View File

@ -137,7 +137,7 @@ jobs:
# Make sure only the current user can read the private key
- chmod 600 /tmp/git_deploy_key
# Create a script to return the passphrase environment variable to ssh-add
- echo 'echo ${SSH_PASSPHRASE}' > /tmp/askpass && chmod +x /tmp/askpass
- echo 'echo ${SSL_PASSPHRASE}' > /tmp/askpass && chmod +x /tmp/askpass
# Start the authentication agent
- eval "$(ssh-agent -s)"
# Add the key to the authentication agent