Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
Replace composer task by exec
Browse files Browse the repository at this point in the history
  • Loading branch information
cdujeu committed May 11, 2016
1 parent 6b7878e commit 3d220ad
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions dist/phing/build-pydio.xml
Expand Up @@ -145,11 +145,10 @@
<if>
<available type="file" file="${INNER_DIRECTORY}/core/composer.json"/>
<then>
<composer command="install" composer="/home/builder/composer.phar">
<arg value="--optimize-autoloader" />
<arg value="--working-dir" />
<arg path="${INNER_DIRECTORY}" />
</composer>
<exec
command="/home/builder/composer.phar install --optimze-autoloader"
dir="${INNER_DIRECTORY}"
/>
</then>
</if>

Expand Down

0 comments on commit 3d220ad

Please sign in to comment.