Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc/ci
diff options
context:
space:
mode:
authorAchilleas Pipinellis <axilleas@axilleas.me>2016-07-09 18:07:57 +0300
committerAchilleas Pipinellis <axilleas@axilleas.me>2016-07-09 18:07:57 +0300
commit40ca5874c67cd82fc04f23bcafc8fbebb4ca6c0e (patch)
tree63c000376c9fe583b9bd476406050aaa128e194b /doc/ci
parentefdbfdfd69277d3dffb2a3ef86ff39b77e3aec4b (diff)
parent5dcea406b97cbaf33afc9c7ad895dfbc1593401f (diff)
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/ci')
-rw-r--r--doc/ci/examples/php.md2
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