6 lines
62 B
Bash
6 lines
62 B
Bash
#!/bin/bash
|
|
set -eu
|
|
cd $(dirname $0)
|
|
|
|
vendor/bin/phpunit "$@"
|