summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xmake/modules/private/utils/toolchain.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/modules/private/utils/toolchain.lua b/xmake/modules/private/utils/toolchain.lua
index de5d4916f..cd2f20736 100644
--- a/xmake/modules/private/utils/toolchain.lua
+++ b/xmake/modules/private/utils/toolchain.lua
@@ -473,7 +473,7 @@ function add_llvm_runenvs(toolchain)
local runenvs = toolchain:get("runenvs")
if runenvs and runenvs["PATH"] then
runenvs["PATH"] = table.wrap(runenvs["PATH"])
- table.insert(runenvs["PATH"], 1 , dir)
+ table.insert(runenvs["PATH"], 1, dir)
else
toolchain:add("runenvs", "PATH", dir)
end