Extract source tarballs with --no-same-owner

This commit is contained in:
Jeremy Soller 2025-11-12 12:16:16 -07:00
parent 04769573ef
commit 9f3cf50329
No known key found for this signature in database
GPG Key ID: 670FDFB5428E05CA

View File

@ -369,6 +369,7 @@ pub(crate) fn fetch_extract_tar(
command.arg(if verbose { "xvf" } else { "xf" });
} else {
command.arg("--extract");
command.arg("--no-same-owner");
if verbose {
command.arg("--verbose");
}