10 lines
227 B
Bash
Executable File
10 lines
227 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [ "$TRAVIS_CUBERITE_BUILD_TYPE" == "COVERAGE" ]
|
|
then
|
|
find tests -type f -name '*.gcda' -exec sh -c 'cp {} $(dirname {})/../$(basename {})' \;
|
|
coveralls --exclude lib --exclude Android >/dev/null
|
|
fi
|
|
|
|
|