diff options
author | Dan McGee <dan@archlinux.org> | 2010-02-16 21:34:38 -0600 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2010-02-17 06:11:48 +0100 |
commit | 62e4272ca27286aac28b2da50cff771db8bb5c46 (patch) | |
tree | 19737461861c20579942ab07806da4eb17995a06 | |
parent | dd488b3c90ce1c931737bb0830d2f0e4cd7efabb (diff) | |
download | devtools32-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-x | commitpkg | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |