1
0
Fork 0

Relocate gcda files so gcov can find them take 2

This commit is contained in:
Tycho 2014-05-10 13:57:46 +01:00
parent 740aed3aef
commit 79570552b9
1 changed files with 2 additions and 2 deletions

View File

@ -2,8 +2,8 @@
if [ "$TRAVIS_MCSERVER_BUILD_TYPE" == "COVERAGE" ]
then
find tests -type f -name '*.gcda' -exec 'cp {} $(dirname {})/../$(basename {})'
coveralls --exclude lib --exclude tests
find tests -type f -name '*.gcda' -exec cp {} $(dirname {})/../$(basename {})
coveralls --exclude lib --exclude tests >
fi