diff options
| author | ruki <[email protected]> | 2023-10-07 00:33:16 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2023-10-07 00:33:16 +0800 |
| commit | bceea4e7fe7553b90ac7d14e4ea854bbb2d3e04a (patch) | |
| tree | 8d16dfde4762611782d27dcec6bdcfca02fc4d80 | |
| parent | 4ea0573047db301f1569c9d6b0d117f92433db49 (diff) | |
ignore .paxheader
| -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 f1213f275..6df173bff 100644 --- a/xmake/modules/utils/archive/extract.lua +++ b/xmake/modules/utils/archive/extract.lua @@ -152,6 +152,8 @@ function _extract_using_7z(archivefile, outputdir, extension, opt) os.tryrm(path.join(outputdir, "pax_global_header")) os.tryrm(path.join(outputdir, "PaxHeaders*")) os.tryrm(path.join(outputdir, "@PaxHeader")) + -- https://github.com/xmake-io/xmake-repo/pull/2673 + os.tryrm(path.join(outputdir, "*.paxheader")) end -- continue to extract *.tar file |
