From efc38953bc7909b397e306b585c1b75c0ae7af79 Mon Sep 17 00:00:00 2001 From: ruki Date: Thu, 26 May 2022 22:41:28 +0800 Subject: fix path concat --- xmake/core/base/path.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xmake/core/base/path.lua b/xmake/core/base/path.lua index 3dfb90b2a..ff156c150 100644 --- a/xmake/core/base/path.lua +++ b/xmake/core/base/path.lua @@ -125,7 +125,7 @@ end -- concat two paths function _instance:__concat(other) - return path.new(path.join(self:str(), tostring(other)), self._TRANSFORM) + return path.join(tostring(self), tostring(other)) end -- tostring(path) -- cgit v1.3.1