diff options
author | Patrick Deden <gitlab@pdeden.de> | 2018-02-01 12:20:03 +0000 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2018-03-30 18:12:27 +0200 |
commit | 64ef7517af80ff3aeffe45af79549ab84b4bf040 (patch) | |
tree | 4b397c40024dd0ab7e7c88ae1142890217375f76 /doc | |
parent | 96cd05e65ef6b3b98734f041a43fc8cc81dba9b5 (diff) | |
download | gitlab-ce-64ef7517af80ff3aeffe45af79549ab84b4bf040.tar.gz |
Envoy.blade.php syntax fixedpdeden/gitlab-ee-patch-7
Diffstat (limited to 'doc')
-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 ``` |