1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
From: =?utf-8?q?David_Pr=C3=A9vot?= <taffit@debian.org>
Date: Sat, 13 Sep 2014 07:41:57 -0400
Subject: Adapt phpunit path
Forwarded: not-needed
---
build.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/build.xml b/build.xml
index f02f4b5..fc58255 100644
--- a/build.xml
+++ b/build.xml
@@ -25,7 +25,7 @@
</target>
<target name="phpunit" description="Run unit tests with PHPUnit">
- <exec executable="${basedir}/vendor/bin/phpunit" failonerror="true">
+ <exec executable="phpunit" failonerror="true">
<arg value="--configuration"/>
<arg path="${basedir}/build/phpunit.xml"/>
</exec>
|