Force overwrite when extracting lha archives - they can contain dupes!

This commit is contained in:
Bryan Ashby 2018-06-02 17:09:43 -06:00
parent 3ecadebf91
commit ccf29ea8d4
1 changed files with 2 additions and 2 deletions

View File

@ -483,7 +483,7 @@ function getDefaultConfig() {
//
decompress : {
cmd : 'lha',
args : [ '-ew={extractPath}', '{archivePath}' ],
args : [ '-efw={extractPath}', '{archivePath}' ],
},
list : {
cmd : 'lha',
@ -492,7 +492,7 @@ function getDefaultConfig() {
},
extract : {
cmd : 'lha',
args : [ '-ew={extractPath}', '{archivePath}', '{fileList}' ]
args : [ '-efw={extractPath}', '{archivePath}', '{fileList}' ]
}
},