Skip to content

Commit 9620772

Browse files
committed
Fix raw wix cmd
1 parent 6072e53 commit 9620772

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xmake/plugins/pack/wix/main.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ function _get_other_commands(package, cmd, opt)
130130
local subdirectory = dir ~= "." and string.format([[Subdirectory="%s"]], dir) or ""
131131
result = string.format([[<CreateFolder Directory="INSTALLFOLDER" %s/>]], subdirectory)
132132
elseif kind == "wix" then
133-
table.insert(result, cmd.rawstr)
133+
result = cmd.rawstr
134134
end
135135
return result
136136
end

0 commit comments

Comments
 (0)