summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xrelpkg4
1 files changed, 2 insertions, 2 deletions
diff --git a/relpkg b/relpkg
index cb6cdc4..21b088d 100755
--- a/relpkg
+++ b/relpkg
@@ -36,7 +36,7 @@ for _dir in $_dirs; do
warn "$pkgfile doesn't exist"
continue
fi
- rsync --partial --progress "$pkgfile" "$user@$host://$repodir/$_arch/$pkgfile"
+ rsync -t --partial --progress "$pkgfile" "$user@$host://$repodir/$_arch/$pkgfile"
if [[ $_arch == "any" ]]; then
for _arch in ${all_arches[@]}; do
ssh "$user@$host" "ln -sf ../any/$pkgfile $repodir/$_arch/$pkgfile"
@@ -47,5 +47,5 @@ for _dir in $_dirs; do
fi
done
- #ssh "$user@$host" "$repodir/bin/clean_pkg_name" "$pkgname"
+ ssh "$user@$host" "$repodir/bin/clean_pkg_name" "$pkgname"
done