diff options
author | Andreas Fischer <bantu@phpbb.com> | 2012-12-29 13:30:25 +0100 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2012-12-29 13:30:25 +0100 |
commit | b36050983d34de0ecdb242816d5d9daf297cfea1 (patch) | |
tree | 4a2b5f8d3e1c9409daa054a89d6ab65ba4a6386c /build | |
parent | 1fc103e3f322991e1f1877146219b0efeca3f458 (diff) | |
download | forums-b36050983d34de0ecdb242816d5d9daf297cfea1.tar forums-b36050983d34de0ecdb242816d5d9daf297cfea1.tar.gz forums-b36050983d34de0ecdb242816d5d9daf297cfea1.tar.bz2 forums-b36050983d34de0ecdb242816d5d9daf297cfea1.tar.xz forums-b36050983d34de0ecdb242816d5d9daf297cfea1.zip |
[ticket/11291] phing: Add checkreturn="true" to all new commands.
PHPBB3-11291
Diffstat (limited to 'build')
-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> |