From 1f7545634b5121d06bd9150a35f826761c8054bd Mon Sep 17 00:00:00 2001 From: Bryan Ashby Date: Sat, 13 Feb 2021 11:05:14 -0700 Subject: [PATCH] Message import stops #329 --- core/config_default.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/config_default.js b/core/config_default.js index 98aeb4af..c5e0b86b 100644 --- a/core/config_default.js +++ b/core/config_default.js @@ -492,7 +492,7 @@ module.exports = () => { }, decompress : { cmd : '7za', - args : [ 'e', '-o{extractPath}', '{archivePath}' ] // :TODO: should be 'x'? + args : [ 'e', '-y', '-o{extractPath}', '{archivePath}' ] // :TODO: should be 'x'? }, list : { cmd : '7za', @@ -501,7 +501,7 @@ module.exports = () => { }, extract : { cmd : '7za', - args : [ 'e', '-o{extractPath}', '{archivePath}', '{fileList}' ], + args : [ 'e', '-y', '-o{extractPath}', '{archivePath}', '{fileList}' ], }, },