diff options
| author | ruki <[email protected]> | 2023-10-18 22:43:16 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2023-10-18 22:43:16 +0800 |
| commit | 033b224eeadc306ea5dbf2e815131efc949e4661 (patch) | |
| tree | 5c8fe03bcb97c8e934905ea27e980bac9c513c1d | |
| parent | 0ee348d0cf7c3aa72c56ad50e5627b4fc96bc64d (diff) | |
fix envs
| -rw-r--r-- | xmake/rules/qt/install/windows.lua | 2 |
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 |
