diff options
author | kujiy <kuji.mobile@gmail.com> | 2016-07-08 04:22:30 +0000 |
---|---|---|
committer | kujiy <kuji.mobile@gmail.com> | 2016-07-08 04:22:30 +0000 |
commit | 5dcea406b97cbaf33afc9c7ad895dfbc1593401f (patch) | |
tree | 64f8879dc09c81dec259803c80f230dd43e9a86e /doc/ci/examples/php.md | |
parent | 0de617772dfeb9bdcf3770e9acf7421db5023058 (diff) | |
download | gitlab-ce-5dcea406b97cbaf33afc9c7ad895dfbc1593401f.tar.gz |
gitlab-org/gitlab-ci-multi-runner#1478 Fixed phpunit command in the official doc didn't work.
Curl command has to follow redirects now.
Diffstat (limited to 'doc/ci/examples/php.md')
-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 |