mirror of
https://github.com/ramsey/uuid.git
synced 2026-06-25 17:45:35 +03:00
10 lines
132 B
Bash
Executable File
10 lines
132 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
if [ -f vendor/bin/php-coveralls ]; then
|
|
php vendor/bin/php-coveralls
|
|
else
|
|
php vendor/bin/coveralls
|
|
fi
|