diff options
author | Sam Carrington <github@gwawr.co.uk> | 2016-12-01 18:08:37 +0000 |
---|---|---|
committer | Sam Carrington <github@gwawr.co.uk> | 2016-12-01 18:08:37 +0000 |
commit | 48d89919e6a0eebc43780c41a4d789cdcb716bb5 (patch) | |
tree | 03f18d57d34543a157771553384d76b1888d8b08 /doc | |
parent | 9e8df307e1aba45aba3521bb9aa4dff528205b6e (diff) | |
download | gitlab-ce-48d89919e6a0eebc43780c41a4d789cdcb716bb5.tar.gz |
Update php.md - /.dockerinit was removed in v1.11 so the test always results in an early exit https://github.com/docker/docker/pull/19490
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 175e9d79904..82ffb841729 100644 --- a/doc/ci/examples/php.md +++ b/doc/ci/examples/php.md @@ -40,7 +40,7 @@ repository with the following content: #!/bin/bash # We need to install dependencies only for Docker -[[ ! -e /.dockerenv ]] && [[ ! -e /.dockerinit ]] && exit 0 +[[ ! -e /.dockerenv ]] && exit 0 set -xe |