diff options
| author | Dan Engelbrecht <[email protected]> | 2022-09-05 11:02:46 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-09-05 02:02:46 -0700 |
| commit | 29119e129038f320b59794d180510e9e141ed82d (patch) | |
| tree | 5f3b7af2317103830e27a6f503c3e044ce922629 /scripts/bundle.lua | |
| parent | 0.1.4-pre24 (diff) | |
| download | zen-29119e129038f320b59794d180510e9e141ed82d.tar.xz zen-29119e129038f320b59794d180510e9e141ed82d.zip | |
Don't use -r option for 7z, it is not needed and picks up more than you expect (#156)
Diffstat (limited to 'scripts/bundle.lua')
| -rw-r--r-- | scripts/bundle.lua | 2 |
1 files changed, 1 insertions, 1 deletions
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 |