From c4f74ce2d998a960c1be554ced27a0b0cdcb14a6 Mon Sep 17 00:00:00 2001 From: Andrew Hoffmann <andrew.hoffmann@wisc.edu> Date: Tue, 6 Dec 2016 14:34:34 -0600 Subject: [PATCH] Call the actual PHP script instead of a shell script This allows interoperability with windows --- build.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.xml b/build.xml index a74a8f3..fc7d18a 100644 --- a/build.xml +++ b/build.xml @@ -34,7 +34,7 @@ <!-- Runs PHPUnit --> <target name="test"> - <exec command="php vendor/bin/phpunit" passthru="true" checkreturn="true"/> + <exec command="php vendor/phpunit/phpunit/phpunit" passthru="true" checkreturn="true"/> </target> <target name="release"> -- GitLab