partkeepr

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

commit 756526a688dd95a9ad0f6afd8e2031b4c59489eb
parent f3195a19a558b6170c942860d93dc1cef8c96497
Author: Felicitus <felicitus@felicitus.org>
Date:   Mon,  5 Nov 2012 16:23:17 +0100

Use passthru() instead of exec() to get information about the progress

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

diff --git a/build.xml b/build.xml @@ -43,9 +43,9 @@ </target> <target name="git-update-submodules"> - <exec command="git submodule sync" checkreturn="true" /> - <exec command="git submodule init" checkreturn="true" /> - <exec command="git submodule update" checkreturn="true" /> + <exec command="git submodule sync" passthru="true" checkreturn="true" /> + <exec command="git submodule init" passthru="true" checkreturn="true" /> + <exec command="git submodule update" passthru="true" checkreturn="true" /> </target> <!-- Build the end-user 'setup' directory -->