From ccf29ea8d4ced5900d990aae3ab87657ee3d1051 Mon Sep 17 00:00:00 2001 From: Bryan Ashby Date: Sat, 2 Jun 2018 17:09:43 -0600 Subject: [PATCH] Force overwrite when extracting lha archives - they can contain dupes! --- core/config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/config.js b/core/config.js index 70406e47..63e52032 100644 --- a/core/config.js +++ b/core/config.js @@ -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}' ] } },