diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2016-12-25 13:01:18 +0100 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2016-12-25 13:04:31 +0100 |
| commit | f9305ef01cf402651b12b3f068f30cc8c2af65e9 (patch) | |
| tree | d87da2234752ecfcab8c4f295f88d86d8ef417f8 /.travis.yml | |
| parent | 8b2f747f4369dca11b9703c3033c05672bc724ec (diff) | |
| download | extfs-f9305ef01cf402651b12b3f068f30cc8c2af65e9.tar.xz extfs-f9305ef01cf402651b12b3f068f30cc8c2af65e9.zip | |
travis: Fix src path for lcov
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 8e1143b..19aadbe 100644 --- a/.travis.yml +++ b/.travis.yml @@ -95,4 +95,4 @@ script: after_success: - if [ "$BUILD_TYPE" == "Coverage" ]; then sed -i'' -e "s_$(cd .. && pwd)__g" coverage.info.cleaned; fi - - if [ "$BUILD_TYPE" == "Coverage" ]; then coveralls-lcov --repo-token ${COVERALLS_API_TOKEN} coverage.info.cleaned; fi + - if [ "$BUILD_TYPE" == "Coverage" ]; then cd .. && coveralls-lcov --repo-token ${COVERALLS_API_TOKEN} build/coverage.info.cleaned; fi |
