From 62e4272ca27286aac28b2da50cff771db8bb5c46 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Tue, 16 Feb 2010 21:34:38 -0600 Subject: 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 Signed-off-by: Pierre Schmitz --- commitpkg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'commitpkg') 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 -- cgit v1.2.3-24-g4f1b