summaryrefslogtreecommitdiff
path: root/xmake/core/base/path.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2022-05-22 18:33:01 +0800
committerruki <[email protected]>2022-05-22 18:33:14 +0800
commit095ab891b08842a9827e2147cb6cbb58cf908df6 (patch)
treee2a174e9682cdd0da683722274a0446db5780425 /xmake/core/base/path.lua
parent65350947080e83310f3efff3dcf82f3b12c43f06 (diff)
fix path
Diffstat (limited to 'xmake/core/base/path.lua')
-rw-r--r--xmake/core/base/path.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/core/base/path.lua b/xmake/core/base/path.lua
index 79eb28c3f..04c386c23 100644
--- a/xmake/core/base/path.lua
+++ b/xmake/core/base/path.lua
@@ -57,13 +57,13 @@ end
function _instance:set(p)
self._RAWSTR = tostring(p)
- instance:_update()
+ self:_update()
return self
end
function _instance:transform_set(transform)
self._TRANSFORM = transform
- instance:_update()
+ self:_update()
return self
end