diff options
author | Achilleas Pipinellis <axilleas@axilleas.me> | 2016-07-09 15:07:57 +0000 |
---|---|---|
committer | Achilleas Pipinellis <axilleas@axilleas.me> | 2016-07-09 15:07:57 +0000 |
commit | 40ca5874c67cd82fc04f23bcafc8fbebb4ca6c0e (patch) | |
tree | 63c000376c9fe583b9bd476406050aaa128e194b /doc | |
parent | efdbfdfd69277d3dffb2a3ef86ff39b77e3aec4b (diff) | |
parent | 5dcea406b97cbaf33afc9c7ad895dfbc1593401f (diff) | |
download | gitlab-ce-40ca5874c67cd82fc04f23bcafc8fbebb4ca6c0e.tar.gz |
Merge branch 'patch-3' into 'master'
Fix phpunit command in the docker example.
Closes https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/issues/1478
See merge request !5147
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ci/examples/php.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ci/examples/php.md b/doc/ci/examples/php.md index 17e1c64bb8a..bfafcc44d66 100644 --- a/doc/ci/examples/php.md +++ b/doc/ci/examples/php.md @@ -49,7 +49,7 @@ apt-get update -yqq apt-get install git -yqq # Install phpunit, the tool that we will use for testing -curl -o /usr/local/bin/phpunit https://phar.phpunit.de/phpunit.phar +curl -Lo /usr/local/bin/phpunit https://phar.phpunit.de/phpunit.phar chmod +x /usr/local/bin/phpunit # Install mysql driver |