1
0
Fork 0
pull/1260/head
Sampark Sharma 2022-12-12 07:04:15 +00:00 committed by GitHub
parent d175a181a0
commit bbf5659dfa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -146,9 +146,9 @@ async function getCommands(
IS_WINDOWS
if (BSD_TAR_ZSTD && type !== 'create') {
args = [...compressionArgs, ...tarArgs]
args = [[...compressionArgs].join(' '), [...tarArgs].join(' ')]
} else {
args = [...tarArgs, ...compressionArgs]
args = [[...tarArgs].join(' '), [...compressionArgs].join(' ')]
}
if (BSD_TAR_ZSTD) {