Skip to content

Commit 0d03817

Browse files
committed
Update build.xml.
1 parent c3a4cad commit 0d03817

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

build.xml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
<project name="PhpPlaisio" default="build" basedir=".">
22
<!-- Run composer update and executes various other updates -->
33
<target name="update">
4-
<exec command="composer update" checkreturn="true" passthru="true"/>
5-
</target>
6-
7-
<!-- Runs ApiGen -->
8-
<target name="apigen">
9-
<exec command="apigen generate --todo --tree --source src --destination doc/api" passthru="true"
10-
checkreturn="true"/>
4+
<exec executable="composer" checkreturn="true" passthru="true">
5+
<arg value="--ansi"/>
6+
<arg value="update"/>
7+
</exec>
118
</target>
129

1310
<!-- Runs all unit tests -->

0 commit comments

Comments
 (0)