summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2010-02-16 21:34:38 -0600
committerPierre Schmitz <pierre@archlinux.de>2010-02-17 06:11:48 +0100
commit62e4272ca27286aac28b2da50cff771db8bb5c46 (patch)
tree19737461861c20579942ab07806da4eb17995a06
parentdd488b3c90ce1c931737bb0830d2f0e4cd7efabb (diff)
downloaddevtools32-62e4272ca27286aac28b2da50cff771db8bb5c46.tar.xz
commitpkg: dereference symlinks on package upload
This is a regression introduced after switching to rsync in place of scp; scp dereferenced symlinks automatically without need for a command-line option. Signed-off-by: Dan McGee <dan@archlinux.org> Signed-off-by: Pierre Schmitz <pierre@archlinux.de>
-rwxr-xr-xcommitpkg2
1 files changed, 1 insertions, 1 deletions
diff --git a/commitpkg b/commitpkg
index 58d4e25..52ca2ac 100755
--- a/commitpkg
+++ b/commitpkg
@@ -84,7 +84,7 @@ for _arch in ${arch[@]}; do
fi
echo -n 'uploading '
- rsync -c -h --progress $rsyncopts "${pkgfile}" -e ssh $server:staging/$repo || abort
+ rsync -c -h -L --progress $rsyncopts "${pkgfile}" -e ssh $server:staging/$repo || abort
done
archrelease $repo-${_arch} || abort
done