[ticket/11291] phing: Add checkreturn="true" to all new commands.

PHPBB3-11291
This commit is contained in:
Andreas Fischer 2012-12-29 13:30:25 +01:00
parent 1fc103e3f3
commit b36050983d

View file

@ -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>