diff options
author | Aurelio Jargas <verde@aurelio.net> | 2016-07-22 10:10:53 +0000 |
---|---|---|
committer | Aurelio Jargas <verde@aurelio.net> | 2016-07-22 10:10:53 +0000 |
commit | 8e096e724c4938b9112eb4d8a1892a9b8962ef3e (patch) | |
tree | 8fe1bfccfc292d535353269dfab6eed9e8345c8b /doc/ci | |
parent | 88ac4ad5ca568889786161b124db481fc1cda374 (diff) | |
download | gitlab-ce-8e096e724c4938b9112eb4d8a1892a9b8962ef3e.tar.gz |
Add missing escape at line end
Diffstat (limited to 'doc/ci')
-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" ``` |