summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2024-09-09 23:00:14 +0800
committerruki <[email protected]>2024-09-09 13:32:18 +0800
commita883d8f9e94287a46c01da2814ec369a02741d7b (patch)
tree4787c13dde8cf844cef4e24e3082b51f825b6b0c
parent29ba59ddd8206359fc59b89cfbf905733355c015 (diff)
fix error
-rw-r--r--xmake/plugins/project/vsxmake/render.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/plugins/project/vsxmake/render.lua b/xmake/plugins/project/vsxmake/render.lua
index a82a42624..96062601f 100644
--- a/xmake/plugins/project/vsxmake/render.lua
+++ b/xmake/plugins/project/vsxmake/render.lua
@@ -42,7 +42,7 @@ function _cfill(opt, params)
local cond = tmp[1]
local value1 = tmp[2]
local value2 = ""
-
+
if #tmp == 3 then
value2 = tmp[3]
end
@@ -76,7 +76,7 @@ function _expand(params)
end
end
for i, p in ipairs(r) do
- r[i] = p:split("\0", {plain = true})
+ r[i] = p:split("\0")
end
return r
end