diff options
| author | ruki <[email protected]> | 2021-12-08 10:13:32 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-12-08 10:13:32 +0800 |
| commit | 389a91f20c60e49249821659df72b84235adc517 (patch) | |
| tree | 88ba14cdfa7f8632c6f0b69d36ef515d5bbbdc54 | |
| parent | 87b5cd1ed777dda284462e56d67a92332116c17d (diff) | |
Update extract.lua
| -rw-r--r-- | xmake/modules/utils/archive/extract.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/xmake/modules/utils/archive/extract.lua b/xmake/modules/utils/archive/extract.lua index b853e2c8e..d4a41e542 100644 --- a/xmake/modules/utils/archive/extract.lua +++ b/xmake/modules/utils/archive/extract.lua @@ -409,6 +409,7 @@ function main(archivefile, outputdir, opt) , [".tar.gz"] = {_extract_using_7z, _extract_using_gzip} , [".tar.xz"] = {_extract_using_7z, _extract_using_xz} , [".tar.bz2"] = {_extract_using_7z, _extract_using_bzip2} + , [".tar.lz"] = {_extract_using_7z} } else extractors = @@ -423,6 +424,7 @@ function main(archivefile, outputdir, opt) , [".tar.gz"] = {_extract_using_tar, _extract_using_7z, _extract_using_gzip} , [".tar.xz"] = {_extract_using_tar, _extract_using_7z, _extract_using_xz} , [".tar.bz2"] = {_extract_using_tar, _extract_using_7z, _extract_using_bzip2} + , [".tar.lz"] = {_extract_using_tar, _extract_using_7z} } end |
