Files
php-uuid/resources/scripts/php-coveralls.sh
T
2020-01-29 13:16:20 -06:00

14 lines
197 B
Bash
Executable File

#!/bin/sh
set -e
if [ "${TRAVIS_EVENT_TYPE}" != "cron" ]; then
exit 0
fi
if [ -f vendor/bin/php-coveralls ]; then
php vendor/bin/php-coveralls -v
else
php vendor/bin/coveralls -v
fi