pkg download delete -X (save xattrs data) rsync flag

This commit is contained in:
2026-09-10 18:45:16 +03:00
parent 2a14c89f5a
commit a6059bd1fd
2 changed files with 2 additions and 2 deletions

View File

@ -94,7 +94,7 @@ pub fn download(repo: &String, pkgname: &String, force: bool, recursive: bool) {
io::stdout().flush().unwrap();
let mut cmd = Command::new("rsync");
cmd.arg("-azHX").arg("--stats");
cmd.arg("-azH").arg("--stats");
if force { cmd.arg("--delete"); }
cmd.arg(&remote_path);
cmd.arg(&local_path_sync);