summaryrefslogtreecommitdiff
path: root/xmake/core/base/path.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2022-03-09 23:36:23 +0800
committerruki <[email protected]>2022-03-09 23:36:23 +0800
commit0aca668c37f645f7b8cdac44d3fb236c8f34196b (patch)
treebb9a0ff68d1791cb2ff51fa66dbba1e87fd8fb44 /xmake/core/base/path.lua
parentee016abc9a742108965131770761e6623e16d85a (diff)
fix theme.load
Diffstat (limited to 'xmake/core/base/path.lua')
-rw-r--r--xmake/core/base/path.lua5
1 files changed, 0 insertions, 5 deletions
diff --git a/xmake/core/base/path.lua b/xmake/core/base/path.lua
index e2fa9e1bc..ede2c36eb 100644
--- a/xmake/core/base/path.lua
+++ b/xmake/core/base/path.lua
@@ -70,11 +70,6 @@ end
-- join path
function path.join(p, ...)
- print("p", p)
- for _, name in ipairs({...}) do
- print("1: ", name)
- --p = p .. "/" .. name
- end
return path.translate(p .. path.sep() .. table.concat({...}, path.sep()))
end