mirror of
https://github.com/ramsey/uuid.git
synced 2026-06-14 15:56:48 +03:00
10 lines
136 B
Bash
Executable File
10 lines
136 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [ -f vendor/bin/php-coveralls ]; then
|
|
php vendor/bin/php-coveralls -v
|
|
else
|
|
php vendor/bin/coveralls -v
|
|
fi
|