diff options
| -rw-r--r-- | xmake/core/base/path.lua | 4 |
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 |
