From 29119e129038f320b59794d180510e9e141ed82d Mon Sep 17 00:00:00 2001 From: Dan Engelbrecht Date: Mon, 5 Sep 2022 11:02:46 +0200 Subject: Don't use -r option for 7z, it is not needed and picks up more than you expect (#156) --- scripts/bundle.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/bundle.lua') diff --git a/scripts/bundle.lua b/scripts/bundle.lua index 008dcdf4e..6689ee9e9 100644 --- a/scripts/bundle.lua +++ b/scripts/bundle.lua @@ -87,7 +87,7 @@ local function _zip(store_only, zip_path, ...) compression_level = "-mx0" end - local ret = _exec("7z", "a", "-r", compression_level, zip_path, table.unpack(input_paths)) + local ret = _exec("7z", "a", compression_level, zip_path, table.unpack(input_paths)) if ret > 0 then raise("Received error from 7z") end -- cgit v1.2.3