Fix test
This commit is contained in:
Vendored
+2
-2
@@ -146,9 +146,9 @@ async function getCommands(
|
|||||||
IS_WINDOWS
|
IS_WINDOWS
|
||||||
|
|
||||||
if (BSD_TAR_ZSTD && type !== 'create') {
|
if (BSD_TAR_ZSTD && type !== 'create') {
|
||||||
args = [...compressionArgs, ...tarArgs]
|
args = [[...compressionArgs].join(' '), [...tarArgs].join(' ')]
|
||||||
} else {
|
} else {
|
||||||
args = [...tarArgs, ...compressionArgs]
|
args = [[...tarArgs].join(' '), [...compressionArgs].join(' ')]
|
||||||
}
|
}
|
||||||
|
|
||||||
if (BSD_TAR_ZSTD) {
|
if (BSD_TAR_ZSTD) {
|
||||||
|
|||||||
Reference in New Issue
Block a user