Don't hang on unzip prompting
This commit is contained in:
parent
cd3b8d5e76
commit
3f454c44c2
Binary file not shown.
Binary file not shown.
|
@ -678,7 +678,7 @@ function getDefaultConfig() {
|
||||||
},
|
},
|
||||||
decompress : {
|
decompress : {
|
||||||
cmd : 'unzip',
|
cmd : 'unzip',
|
||||||
args : [ '{archivePath}', '-d', '{extractPath}' ],
|
args : [ '-n', '{archivePath}', '-d', '{extractPath}' ],
|
||||||
},
|
},
|
||||||
list : {
|
list : {
|
||||||
cmd : 'unzip',
|
cmd : 'unzip',
|
||||||
|
@ -688,7 +688,7 @@ function getDefaultConfig() {
|
||||||
},
|
},
|
||||||
extract : {
|
extract : {
|
||||||
cmd : 'unzip',
|
cmd : 'unzip',
|
||||||
args : [ '{archivePath}', '{fileList}', '-d', '{extractPath}' ],
|
args : [ '-n', '{archivePath}', '{fileList}', '-d', '{extractPath}' ],
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue