summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2023-10-18 22:43:16 +0800
committerruki <[email protected]>2023-10-18 22:43:16 +0800
commit033b224eeadc306ea5dbf2e815131efc949e4661 (patch)
tree5c8fe03bcb97c8e934905ea27e980bac9c513c1d
parent0ee348d0cf7c3aa72c56ad50e5627b4fc96bc64d (diff)
fix envs
-rw-r--r--xmake/rules/qt/install/windows.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/rules/qt/install/windows.lua b/xmake/rules/qt/install/windows.lua
index 6edb236b0..9877b0aaf 100644
--- a/xmake/rules/qt/install/windows.lua
+++ b/xmake/rules/qt/install/windows.lua
@@ -78,7 +78,7 @@ function main(target, opt)
envs.PATH = {qt.bindir}
local curpath = os.getenv("PATH")
if curpath then
- table.join2(env.PATH, path.splitenv(curpath))
+ table.join2(envs.PATH, path.splitenv(curpath))
end
end