From d68e7cb031b3ef0743deb853261356590d1a1abe Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Thu, 11 Feb 2010 14:01:45 +0100 Subject: avoid useless output in commitpkg --- commitpkg | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) (limited to 'commitpkg') diff --git a/commitpkg b/commitpkg index 5c8c8e9..11e345d 100755 --- a/commitpkg +++ b/commitpkg @@ -57,18 +57,13 @@ if [ "$1" = "-l" ]; then fi if [ -n "$1" ]; then - svn commit -m "upgpkg: $pkgbase $pkgver-$pkgrel -$1" >/dev/null || abort - echo "===> Commited with message: -upgpkg: $pkgbase $pkgver-$pkgrel - $1" + svn commit -q -m "upgpkg: $pkgbase $pkgver-$pkgrel +$1" || abort else - svn commit || abort - echo "===> Commited" + svn commit -q || abort fi for _arch in ${arch[@]}; do - echo "===> Uploading to staging/$repo for arch=${_arch}" pkgfiles='' for _pkgname in ${pkgname[@]}; do pkgfile=$_pkgname-$pkgver-$pkgrel-${_arch}$PKGEXT @@ -76,15 +71,13 @@ for _arch in ${arch[@]}; do if [ ! -f $pkgfile -a -f "$PKGDEST/$pkgfile" ]; then pkgfile="$PKGDEST/$pkgfile" elif [ ! -f $pkgfile ]; then - echo "File $pkgfile doesn't exist" - # skip to next architecture + echo "Skipping ${_arch}" continue 2 fi pkgfiles="${pkgfiles} ${pkgfile}" done - rsync -c -h --progress $rsyncopts "${pkgfiles}" -e ssh $server:staging/$repo || abort "error during upload" - + rsync -c -h --progress $rsyncopts "${pkgfiles}" -e ssh $server:staging/$repo || abort archrelease $repo-${_arch} || abort done -- cgit v1.2.3-24-g4f1b