diff options
-rwxr-xr-x | relpkg | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |