summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/x2go-buildallpackages4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/x2go-buildallpackages b/bin/x2go-buildallpackages
index 72ffb1d..cb877bf 100755
--- a/bin/x2go-buildallpackages
+++ b/bin/x2go-buildallpackages
@@ -58,13 +58,13 @@ COMPONENT=${1:-""}
# build the newest code... (nightly-builds)
[ "x$COMPONENT" = "xheuler" ] || [ -z $COMPONENT ] && {
echo -e $LIB_PACKAGES_HEULER + $APP_PACKAGES_HEULER | while read pkg comp checkout; do
- x2go-buildpackage $pkg $comp $checkout
+ x2go-buildpackage $pkg $comp $checkout && x2go-packageupload $pkg $comp $checkout
done
}
# build all packages tagged as ,,build-main'Ä
[ "x$COMPONENT" = "xmain" ] || [ -z $COMPONENT ] && {
echo -e $LIB_PACKAGES_MAIN + $APP_PACKAGES_MAIN | while read pkg comp checkout; do
- x2go-buildpackage $pkg $comp $checkout
+ x2go-buildpackage $pkg $comp $checkout && x2go-packageupload $pkg $comp $checkout
done
}