partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

commit 010c2f54bc0bb3accf86fea6c4b559de8f5cce64
parent 218e8dafb1488552e9bbc71d9541b361c4f1541b
Author: Felicitus <felicitus@felicitus.org>
Date:   Wed, 27 Jun 2012 18:09:40 +0200

Added passthru for rsync in case of errors

Diffstat:
Mbuild.xml | 16++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/build.xml b/build.xml @@ -57,7 +57,7 @@ <if> <isset property="build.fast" /> <then> - <exec dir="." command="rsync -ptgo + <exec dir="." passthru="true" command="rsync -ptgo --include=/bootstrap.js --include=/ext-all.js --include=/ext-all-debug.js @@ -87,7 +87,7 @@ <if> <isset property="build.fast" /> <then> - <exec dir="." command="rsync -a --delete 3rdparty/ext-wizard/Ext.ux.Wizard/ setup/js/wizard/" checkreturn="true" /> + <exec dir="." passthru="true" command="rsync -a --delete 3rdparty/ext-wizard/Ext.ux.Wizard/ setup/js/wizard/" checkreturn="true" /> </then> <else> <copy overwrite="true" todir="setup/js/wizard"> @@ -102,7 +102,7 @@ <if> <isset property="build.fast" /> <then> - <exec dir="." command="rsync -a src/setup/ setup/" checkreturn="true" /> + <exec dir="." passthru="true" command="rsync -a src/setup/ setup/" checkreturn="true" /> </then> <else> <copy overwrite="true" todir="setup/"> @@ -124,7 +124,7 @@ <if> <isset property="build.fast" /> <then> - <exec dir="." command="rsync -ptgo -r + <exec dir="." passthru="true" command="rsync -ptgo -r --include=/bootstrap.js --include=/ext-all.js --include=/ext-all-debug.js @@ -156,7 +156,7 @@ <if> <isset property="build.fast" /> <then> - <exec dir="." command="rsync -a --delete ${extjs.path}/examples/ux/statusbar/ frontend/js/Ext.ux/statusbar/" checkreturn="true" /> + <exec dir="." passthru="true" command="rsync -a --delete ${extjs.path}/examples/ux/statusbar/ frontend/js/Ext.ux/statusbar/" checkreturn="true" /> </then> <else> <copy overwrite="false" todir="frontend/js/Ext.ux/"> @@ -171,7 +171,7 @@ <if> <isset property="build.fast" /> <then> - <exec dir="." command="rsync -a ${extjs.path}/examples/ux/TabCloseMenu.js frontend/js/Ext.ux/" checkreturn="true" /> + <exec dir="." passthru="true" command="rsync -a ${extjs.path}/examples/ux/TabCloseMenu.js frontend/js/Ext.ux/" checkreturn="true" /> </then> <else> <copy overwrite="false" todir="frontend/js/Ext.ux/"> @@ -187,7 +187,7 @@ <if> <isset property="build.fast" /> <then> - <exec dir="." command="rsync -a 3rdparty/phpjs/php.default.min.js frontend/js/org.phpjs.lib/" checkreturn="true" /> + <exec dir="." passthru="true" command="rsync -a 3rdparty/phpjs/php.default.min.js frontend/js/org.phpjs.lib/" checkreturn="true" /> </then> <else> <copy overwrite="false" todir="frontend/js/org.phpjs.lib"> @@ -202,7 +202,7 @@ <if> <isset property="build.fast" /> <then> - <exec dir="." command="rsync -a --exclude=.git src/frontend/ frontend/" checkreturn="true" /> + <exec dir="." passthru="true" command="rsync -a --exclude=.git src/frontend/ frontend/" checkreturn="true" /> </then> <else> <copy overwrite="true" todir="frontend/">