diff options
author | lloyd <[email protected]> | 2015-05-11 12:34:07 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2015-05-11 12:34:07 +0000 |
commit | 15278745e706e2be4a51a1ddf92c02bc36a6d3b9 (patch) | |
tree | f52e5ece5d42a40ab65ec4c4e4e7fcdc5d290e70 /src/scripts | |
parent | 08d90a228462ec563221a2d542ac770959dc260a (diff) |
Fix compare
Diffstat (limited to 'src/scripts')
-rwxr-xr-x | src/scripts/ci/after_success.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts/ci/after_success.sh b/src/scripts/ci/after_success.sh index 2aaabe294..dc84210cb 100755 --- a/src/scripts/ci/after_success.sh +++ b/src/scripts/ci/after_success.sh @@ -4,7 +4,7 @@ BUILD_MODE=$1 set -ev -if [ "$BUILD_MODE" = "coverage"] +if [ "$BUILD_MODE" = "coverage" ] then lcov --directory . --capture --output-file coverage.info lcov --remove coverage.info 'tests/*' '/usr/*' --output-file coverage.info |