diff options
| -rw-r--r-- | xmake/core/base/os.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xmake/core/base/os.lua b/xmake/core/base/os.lua index d44ac3843..a2856fd66 100644 --- a/xmake/core/base/os.lua +++ b/xmake/core/base/os.lua @@ -732,9 +732,10 @@ function os.execv(program, argv, opt) end envars[k] = v -- we need fix too long value before running process + --[[ if type(v) == "string" and #v > 4096 and os.host() == "windows" then os._split_long_pathenv(envars, k) - end + end]] end envs = {} for k, v in pairs(envars) do |
