diff options
author | Achilleas Pipinellis <axil@gitlab.com> | 2018-04-04 15:25:54 +0000 |
---|---|---|
committer | Achilleas Pipinellis <axil@gitlab.com> | 2018-04-04 15:25:54 +0000 |
commit | aff9bf11d98febc038b7deedfafb3b361ad392b2 (patch) | |
tree | cbf91cde3cf315e2c6e2595ed2f29db4a6f54498 /doc/ci | |
parent | f8365c3d6dc0925ff1ae7eda09fb4fab8884c58b (diff) | |
parent | 64ef7517af80ff3aeffe45af79549ab84b4bf040 (diff) | |
download | gitlab-ce-aff9bf11d98febc038b7deedfafb3b361ad392b2.tar.gz |
Merge branch 'pdeden/gitlab-ee-patch-7' into 'master'
Fix syntax error in the `Envoy.blade.php` example
See merge request gitlab-org/gitlab-ce!18177
Diffstat (limited to 'doc/ci')
-rw-r--r-- | doc/ci/examples/laravel_with_gitlab_and_envoy/index.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ci/examples/laravel_with_gitlab_and_envoy/index.md b/doc/ci/examples/laravel_with_gitlab_and_envoy/index.md index b62874ef029..1f9b9d53fc1 100644 --- a/doc/ci/examples/laravel_with_gitlab_and_envoy/index.md +++ b/doc/ci/examples/laravel_with_gitlab_and_envoy/index.md @@ -190,7 +190,7 @@ To start, we create an `Envoy.blade.php` in the root of our app with a simple ta ```php @servers(['web' => 'remote_username@remote_host']) -@task('list', [on => 'web']) +@task('list', ['on' => 'web']) ls -l @endtask ``` |