Commit 0725879b by Lukas Pirl Committed by Stéphane Graber

make rsync deal with sparse files efficiently

Signed-off-by: 's avatarLukas Pirl <git@lukas-pirl.de>
parent 5fbd50cd
......@@ -61,7 +61,7 @@ int do_rsync(const char *src, const char *dest)
s[l-2] = '/';
s[l-1] = '\0';
execlp("rsync", "rsync", "-aHX", "--delete", s, dest, (char *)NULL);
execlp("rsync", "rsync", "-aHXS", "--delete", s, dest, (char *)NULL);
exit(1);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment