diff options
| author | Jérôme Leclercq <[email protected]> | 2022-12-22 11:29:50 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-12-22 11:29:50 +0100 |
| commit | 843229827401586f1a9ddc623d7258df589aec94 (patch) | |
| tree | 214ff49bd882356e3164574e51260c3643331902 /xmake/modules/utils/archive/extract.lua | |
| parent | a221cca45fe6ce74dcf09f8afb5d5335b1ba6962 (diff) | |
Update extract.lua
Diffstat (limited to 'xmake/modules/utils/archive/extract.lua')
| -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 0c6affe53..94246ef05 100644 --- a/xmake/modules/utils/archive/extract.lua +++ b/xmake/modules/utils/archive/extract.lua @@ -421,7 +421,7 @@ function main(archivefile, outputdir, opt) extractors = { -- tar supports .zip on macOS but does not on Linux - [".zip"] = is_host("macosx") and {_extract_using_unzip, _extract_using_tar, _extract_using_7z} or {_extract_using_unzip, _extract_using_tar, _extract_using_7z} + [".zip"] = is_host("macosx") and {_extract_using_unzip, _extract_using_tar, _extract_using_7z} or {_extract_using_unzip, _extract_using_7z} , [".7z"] = {_extract_using_7z} , [".gz"] = {_extract_using_gzip, _extract_using_tar, _extract_using_7z} , [".xz"] = {_extract_using_xz, _extract_using_tar, _extract_using_7z} |
