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>
This commit is contained in:
Dan McGee 2010-02-16 21:34:38 -06:00 committed by Pierre Schmitz
parent dd488b3c90
commit 62e4272ca2
1 changed files with 1 additions and 1 deletions

View File

@ -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