diff options
author | Jonathan Duck <duckbrain30@gmail.com> | 2017-12-25 12:48:48 +0000 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2017-12-25 12:48:48 +0000 |
commit | 0960c703c0a7e37c2177aaf32b64c316f531fe15 (patch) | |
tree | aa4b74b3c957177d625dc472150da01e606b4cdc /doc/ci/examples | |
parent | 87bae6d42f7e562dc322b4913aa7160058d0608b (diff) | |
download | gitlab-ce-0960c703c0a7e37c2177aaf32b64c316f531fe15.tar.gz |
Update code_climate recommended usage.
Diffstat (limited to 'doc/ci/examples')
-rw-r--r-- | doc/ci/examples/code_climate.md | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/ci/examples/code_climate.md b/doc/ci/examples/code_climate.md index 4d0ba8bfef3..6a5821762cc 100644 --- a/doc/ci/examples/code_climate.md +++ b/doc/ci/examples/code_climate.md @@ -16,8 +16,7 @@ codequality: - docker:dind script: - docker pull codeclimate/codeclimate - - docker run --env CODECLIMATE_CODE="$PWD" --volume "$PWD":/code --volume /var/run/docker.sock:/var/run/docker.sock --volume /tmp/cc:/tmp/cc codeclimate/codeclimate init - - docker run --env CODECLIMATE_CODE="$PWD" --volume "$PWD":/code --volume /var/run/docker.sock:/var/run/docker.sock --volume /tmp/cc:/tmp/cc codeclimate/codeclimate analyze -f json > codeclimate.json + - docker run --env CODECLIMATE_CODE="$PWD" --volume "$PWD":/code --volume /var/run/docker.sock:/var/run/docker.sock --volume /tmp/cc:/tmp/cc codeclimate/codeclimate analyze -f json > codeclimate.json || true artifacts: paths: [codeclimate.json] ``` |