diff options
| author | ruki <[email protected]> | 2018-11-24 00:52:57 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2018-11-23 23:17:47 +0800 |
| commit | 3eb86b3b9e59b87eb17605ce2c02bb453d55ba9a (patch) | |
| tree | 4309677e9c08638bfcb06a47d37a44461fe45673 /xmake/modules/utils | |
| parent | 032d8ad7cf6690e15e63c463e72d1039eb4b8dd9 (diff) | |
fix 7z extractor bug
Diffstat (limited to 'xmake/modules/utils')
| -rw-r--r-- | xmake/modules/utils/archive/extract.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/modules/utils/archive/extract.lua b/xmake/modules/utils/archive/extract.lua index 2b826efba..6b2f5a69e 100644 --- a/xmake/modules/utils/archive/extract.lua +++ b/xmake/modules/utils/archive/extract.lua @@ -89,7 +89,7 @@ function _extract_using_7z(archivefile, outputdir, extension, opt) end -- init argv - local argv = {"x", "-y", option.get("verbose") and "-bb3" or "-bb0", archivefile} + local argv = {"x", "-y", archivefile} -- ensure output directory if not os.isdir(outputdir) then |
