diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2019-03-29 22:46:13 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2019-03-29 22:46:13 +0100 |
commit | 33cefb7daa47bcd4a12fc588966889e83713244c (patch) | |
tree | dd7a5eda9ee33b4e4bb75bce5e3e10d3bf7f36d5 /tools | |
parent | 3e22bc116be87a3c08486e0e00dd862fc35df6e0 (diff) | |
download | weechat-33cefb7daa47bcd4a12fc588966889e83713244c.zip |
core: fix upload of code coverage to codecov.io
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/build-test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/build-test.sh b/tools/build-test.sh index bd13c8dcd..a769148c7 100755 --- a/tools/build-test.sh +++ b/tools/build-test.sh @@ -77,7 +77,7 @@ if [ "$BUILDTOOL" = "cmake" ]; then run "lcov --directory . --capture --output-file coverage.info" run "lcov --remove coverage.info '/usr/*' --output-file coverage.info" run "lcov --list coverage.info" - run "bash <(curl -s https://codecov.io/bash) -f coverage.info" + bash <(curl -s https://codecov.io/bash) -f coverage.info fi fi |