blob: fc17ddc2c2fdf74cb3cbd3efe9e444978941ae5b (
plain) (
tree)
|
|
#!/usr/bin/env bash
if [ "$TRAVIS_MCSERVER_BUILD_TYPE" == "COVERAGE" ]
then
find tests -type f -name '*.gcda' -exec sh -c 'cp {} $(dirname {})/../$(basename {})' \;
coveralls --exclude lib --exclude Android >/dev/null
fi
|