Simplify the phpunit executable command

As `./vendor/bin` is already in `$PATH` within the main run file.
This commit is contained in:
Oliver Davies 2024-07-30 20:26:39 +01:00
parent 0104b10c22
commit 61c757e78d

View file

@ -85,7 +85,7 @@ function publish {
}
function test {
./vendor/bin/phpunit "${@}"
phpunit "${@}"
}
# vim: ft=bash