1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-28 13:56:37 +02:00

core: fix upload of code coverage to codecov.io

This commit is contained in:
Sébastien Helleu
2019-03-29 22:46:13 +01:00
parent 3e22bc116b
commit 33cefb7daa
+1 -1
View File
@@ -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