diff options
author | Rémy Coutable <remy@rymai.me> | 2016-07-26 09:14:10 +0000 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2016-07-26 09:14:10 +0000 |
commit | 08c8b97413d9814f228efc68675a5dc079bb487b (patch) | |
tree | dd894f2db8ca39bebf4a97f813119cc7d8450ec1 /doc | |
parent | a448e4a62c165820b08949f3136ef01397b9f1a7 (diff) | |
parent | 8e096e724c4938b9112eb4d8a1892a9b8962ef3e (diff) | |
download | gitlab-ce-08c8b97413d9814f228efc68675a5dc079bb487b.tar.gz |
Merge branch 'patch-3' into 'master'
Add missing escape at line end
Documentation fix, pretty simple.
See merge request !5422
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ci/docker/using_docker_build.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ci/docker/using_docker_build.md b/doc/ci/docker/using_docker_build.md index 7f83f846454..0f64137a8a9 100644 --- a/doc/ci/docker/using_docker_build.md +++ b/doc/ci/docker/using_docker_build.md @@ -38,7 +38,7 @@ GitLab Runner then executes build scripts as the `gitlab-runner` user. $ sudo gitlab-ci-multi-runner register -n \ --url https://gitlab.com/ci \ --registration-token REGISTRATION_TOKEN \ - --executor shell + --executor shell \ --description "My Runner" ``` |