summaryrefslogtreecommitdiff
path: root/xmake/modules/utils
diff options
context:
space:
mode:
authorruki <[email protected]>2024-08-22 00:49:04 +0800
committerruki <[email protected]>2024-08-22 00:49:04 +0800
commit906fa7a6d77e20190ebe943361e53c595237e52e (patch)
tree960ee5521e3112addc64d214930abeb8cbd8fa29 /xmake/modules/utils
parent7b05f6e814dedea34ca11a27833e7c39c3afe246 (diff)
archive xmake.xmz
Diffstat (limited to 'xmake/modules/utils')
-rw-r--r--xmake/modules/utils/archive/archive_xmz.lua7
1 files changed, 6 insertions, 1 deletions
diff --git a/xmake/modules/utils/archive/archive_xmz.lua b/xmake/modules/utils/archive/archive_xmz.lua
index 6cf2c13aa..7f4425578 100644
--- a/xmake/modules/utils/archive/archive_xmz.lua
+++ b/xmake/modules/utils/archive/archive_xmz.lua
@@ -25,9 +25,14 @@ import("core.compress.lz4")
-- archive files
function _archive_files(archivefile, inputfiles, opt)
+ local curdir = opt.curdir
local outputfile = io.open(archivefile, "wb")
for _, inputfile in ipairs(inputfiles) do
- outputfile:write(bytes(2):u16be_set(1, #inputfile))
+ local filepath = inputfile
+ if curdir then
+ filepath = path.relative(filepath, curdir)
+ end
+ outputfile:write(bytes(2):u16be_set(1, #filepath))
outputfile:write(inputfile)
local data = io.readfile(inputfile, {encoding = "binary"})
vprint("archiving %s, %d bytes", inputfile, data and #data or 0)