diff options
author | Alexander Oleynikov <oleynikov@posteo.li> | 2019-08-08 18:14:21 +0000 |
---|---|---|
committer | Alexander Oleynikov <oleynikov@posteo.li> | 2019-08-08 18:14:21 +0000 |
commit | 1a7280220503a4bdcbed6e0b641a22be2368a626 (patch) | |
tree | ea6b3ba9cbeb7847474eeb517ca3d4d490bc4b8f /doc | |
parent | 455d16d1bfd59000391a64f41ab86d5a847f008a (diff) | |
download | gitlab-ce-1a7280220503a4bdcbed6e0b641a22be2368a626.tar.gz |
Remove inoperative >/dev/null
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 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 |