From 61c757e78dbe1b40cb9c423a2273e31cf0e9c6b2 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Tue, 30 Jul 2024 20:26:39 +0100 Subject: [PATCH] Simplify the `phpunit` executable command As `./vendor/bin` is already in `$PATH` within the main run file. --- run.local | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.local b/run.local index 708115bd1..77ca7edca 100755 --- a/run.local +++ b/run.local @@ -85,7 +85,7 @@ function publish { } function test { - ./vendor/bin/phpunit "${@}" + phpunit "${@}" } # vim: ft=bash