summaryrefslogtreecommitdiff
path: root/.travis
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2016-12-25 14:57:01 +0100
committerFelix Morgner <felix.morgner@gmail.com>2016-12-25 14:57:01 +0100
commit58de22cc5701a5821dad74cbab8abc646484a43e (patch)
tree32146dd6f193b6999e28bf66a57bc0c2f806cd17 /.travis
parentdf07c7e88cd8a6983449acdafe9431a3540c9187 (diff)
downloadextfs-58de22cc5701a5821dad74cbab8abc646484a43e.tar.xz
extfs-58de22cc5701a5821dad74cbab8abc646484a43e.zip
travis: Fix coverage report script
Diffstat (limited to '.travis')
-rwxr-xr-x.travis/report-coverage.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis/report-coverage.sh b/.travis/report-coverage.sh
index 8a5bb38..6c83719 100755
--- a/.travis/report-coverage.sh
+++ b/.travis/report-coverage.sh
@@ -9,8 +9,8 @@ while read FILENAME; do
LCOV_INPUT_FILES="$LCOV_INPUT_FILES -a \"$FILENAME\""
done < <( find Coverage -name *.clean )
-sed -i'' -e "s_$(cd .. && pwd)/__g" Coverage/coverage.info
lcov "${LCOV_INPUT_FILES}" -o Coverage/coverage.info
+sed -i'' -e "s_$(cd .. && pwd)/__g" Coverage/coverage.info
cd ..
coveralls-lcov --repo-token ${COVERALLS_API_TOKEN} build/Coverage/coverage.info