Don't hang on unzip prompting

This commit is contained in:
Bryan Ashby 2019-12-23 20:06:15 -07:00
parent cd3b8d5e76
commit 3f454c44c2
3 changed files with 2 additions and 2 deletions

Binary file not shown.

Binary file not shown.

View File

@ -678,7 +678,7 @@ function getDefaultConfig() {
},
decompress : {
cmd : 'unzip',
args : [ '{archivePath}', '-d', '{extractPath}' ],
args : [ '-n', '{archivePath}', '-d', '{extractPath}' ],
},
list : {
cmd : 'unzip',
@ -688,7 +688,7 @@ function getDefaultConfig() {
},
extract : {
cmd : 'unzip',
args : [ '{archivePath}', '{fileList}', '-d', '{extractPath}' ],
args : [ '-n', '{archivePath}', '{fileList}', '-d', '{extractPath}' ],
}
},