Skip to content

Commit

Permalink
add basedir to phpab calls
Browse files Browse the repository at this point in the history
  • Loading branch information
theseer committed Mar 15, 2015
1 parent 18cf48c commit c8ccc7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.xml
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
</target> </target>


<target name="phpab" description="Generate autoloader scripts"> <target name="phpab" description="Generate autoloader scripts">
<exec executable="phpab"> <exec executable="${basedir}/phpab.php">
<arg value="--output"/> <arg value="--output"/>
<arg path="src/autoload.php"/> <arg path="src/autoload.php"/>
<arg value="--basedir"/> <arg value="--basedir"/>
Expand Down Expand Up @@ -151,7 +151,7 @@
</fileset> </fileset>
</delete> </delete>


<exec executable="phpab" failonerror="true"> <exec executable="${basedir}/phpab.php" failonerror="true">
<arg value="--var" /> <arg value="--var" />
<arg value="VERSION=${version}" /> <arg value="VERSION=${version}" />
<arg value="--all" /> <arg value="--all" />
Expand Down

0 comments on commit c8ccc7d

Please sign in to comment.