summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2011-05-12 22:43:39 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2011-05-12 23:14:34 +0200
commit1618159c3f0ec5cafc0181ca6074f988c118a1f0 (patch)
treeed405168b3b8c02d2640c822f32edc1ad62972e6
parentb93388df0525722238e57a807013e52c4271eb51 (diff)
downloadbuildscripts-1618159c3f0ec5cafc0181ca6074f988c118a1f0.tar.gz
buildscripts-1618159c3f0ec5cafc0181ca6074f988c118a1f0.tar.bz2
buildscripts-1618159c3f0ec5cafc0181ca6074f988c118a1f0.zip
calling x2go-packageupload after x2go-buildpackage
-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
}