summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchilleas Pipinellis <axil@gitlab.com>2019-08-20 18:27:52 +0000
committerAchilleas Pipinellis <axil@gitlab.com>2019-08-20 18:27:52 +0000
commit14bcd17b9819dffe01e3434ccc7508d7422a355a (patch)
tree78643c186e82a20c0d02a2dc28d4d34a06257bbe
parent405795655fcb5d2fa03d9ded9b171e08b7c3eddc (diff)
parent1a7280220503a4bdcbed6e0b641a22be2368a626 (diff)
downloadgitlab-ce-14bcd17b9819dffe01e3434ccc7508d7422a355a.tar.gz
Merge branch 'ssh-add-no-redirect' into 'master'
In ssh_keys docs, don't redirect stdout of ssh-add See merge request gitlab-org/gitlab-ce!31630
-rw-r--r--doc/ci/ssh_keys/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ci/ssh_keys/README.md b/doc/ci/ssh_keys/README.md
index d9f022a7125..b6aebd3bd78 100644
--- a/doc/ci/ssh_keys/README.md
+++ b/doc/ci/ssh_keys/README.md
@@ -76,7 +76,7 @@ to access it. This is where an SSH key pair comes in handy.
## without extra base64 encoding.
## https://gitlab.com/gitlab-examples/ssh-private-key/issues/1#note_48526556
##
- - echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add - > /dev/null
+ - echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add -
##
## Create the SSH directory and give it the right permissions