From e5a5867e8260c4dc6d2bcd9168a26dd08ac2f973 Mon Sep 17 00:00:00 2001 From: Nicolas Delperdange Date: Wed, 27 Feb 2019 15:31:31 +0100 Subject: [PATCH] docs(circle): fix incorrect script example Little mistake in the example to add a ssh key for circleCi --- docs/recipes/git-auth-ssh-keys.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/recipes/git-auth-ssh-keys.md b/docs/recipes/git-auth-ssh-keys.md index 9bd27d61..f346d802 100644 --- a/docs/recipes/git-auth-ssh-keys.md +++ b/docs/recipes/git-auth-ssh-keys.md @@ -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