diff options
Diffstat (limited to 'build/build.xml')
-rw-r--r-- | build/build.xml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/build/build.xml b/build/build.xml index df65967e2a..25bed7de0c 100644 --- a/build/build.xml +++ b/build/build.xml @@ -172,14 +172,17 @@ --> <exec dir="." command="git ls-tree ${revision} composer.phar" + checkreturn="true" outputProperty='composer-ls-tree-output' /> <if> <not><equals arg1="${composer-ls-tree-output}" arg2="" trim="true" /></not> <then> <exec dir="." - command="git archive ${revision} composer.phar | tar -xf - -C ${dir}" /> + command="git archive ${revision} composer.phar | tar -xf - -C ${dir}" + checkreturn="true" /> <exec dir="${dir}" command="php composer.phar install" + checkreturn="true" passthru="true" /> <delete file="${dir}/composer.phar" /> </then> |