This commit is contained in:
Henry Mercer
2024-11-11 16:13:43 +00:00
parent 10a3d4f147
commit ba76ee3536
3 changed files with 3 additions and 3 deletions
Generated
+1 -1
View File
@@ -141,7 +141,7 @@ async function extractTarZst(tar, tarVersion, logger) {
: ""}`);
try {
// Initialize args
const args = ["-x", "--zstd"];
const args = ["-x", "--zstd", "-v"];
if (tarVersion.type === "gnu") {
// Suppress warnings when using GNU tar to extract archives created by BSD tar
args.push("--warning=no-unknown-keyword");
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -152,7 +152,7 @@ export async function extractTarZst(
try {
// Initialize args
const args = ["-x", "--zstd"];
const args = ["-x", "--zstd", "-v"];
if (tarVersion.type === "gnu") {
// Suppress warnings when using GNU tar to extract archives created by BSD tar