From d440e5998d1dfbc7942989df837772330b8331ee Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Fri, 12 Feb 2010 01:07:45 +0100 Subject: copy files seperately to avoid escaping problems --- commitpkg | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'commitpkg') diff --git a/commitpkg b/commitpkg index cca96d8..3873169 100755 --- a/commitpkg +++ b/commitpkg @@ -71,7 +71,6 @@ else fi for _arch in ${arch[@]}; do - pkgfiles='' for _pkgname in ${pkgname[@]}; do pkgfile=$_pkgname-$pkgver-$pkgrel-${_arch}$PKGEXT @@ -82,9 +81,8 @@ for _arch in ${arch[@]}; do continue 2 fi - pkgfiles="${pkgfiles} ${pkgfile}" + rsync -c -h --progress $rsyncopts "${pkgfile}" -e ssh $server:staging/$repo || abort done - rsync -c -h --progress $rsyncopts "${pkgfiles}" -e ssh $server:staging/$repo || abort archrelease $repo-${_arch} || abort done -- cgit v1.2.3-24-g4f1b