diff options
author | Alex Mayer <amayer5125@gmail.com> | 2016-04-07 20:10:29 +0000 |
---|---|---|
committer | Alex Mayer <amayer5125@gmail.com> | 2016-04-07 20:10:29 +0000 |
commit | 875646a85e6fb7ab783d99c9c9eac406983e502c (patch) | |
tree | 5cc6de4aac76fd5af80de51dde30851527f52f64 /doc | |
parent | 1060467bb8f1ce6886b05436d16f95996da2fa91 (diff) | |
download | gitlab-ce-875646a85e6fb7ab783d99c9c9eac406983e502c.tar.gz |
Fix Incorrect Quote In Docker Executor Example
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ci/ssh_keys/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ci/ssh_keys/README.md b/doc/ci/ssh_keys/README.md index 210f9c3e849..d790015aca1 100644 --- a/doc/ci/ssh_keys/README.md +++ b/doc/ci/ssh_keys/README.md @@ -57,7 +57,7 @@ before_script: # WARNING: Use this only with the Docker executor, if you use it with shell # you will overwrite your user's SSH config. - mkdir -p ~/.ssh - - '[[ -f /.dockerinit ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config` + - '[[ -f /.dockerinit ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config' ``` As a final step, add the _public_ key from the one you created earlier to the |