From 4253fdd36cf2b4de908466b24da608a865fe9400 Mon Sep 17 00:00:00 2001 From: ruki Date: Thu, 16 Oct 2025 22:58:05 +0800 Subject: fix format --- xmake/modules/private/xrepo/action/env.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xmake/modules/private/xrepo/action/env.lua b/xmake/modules/private/xrepo/action/env.lua index ddc7d5f96..b318e6031 100644 --- a/xmake/modules/private/xrepo/action/env.lua +++ b/xmake/modules/private/xrepo/action/env.lua @@ -399,7 +399,7 @@ function _run_shell(envs) if shell == "pwsh" or shell == "powershell" then os.execv("pwsh", args, {envs = envs}) elseif shell == "nu" then - if #args ~=0 then + if #args ~= 0 then table.insert(args, 1, "-c") end os.execv("nu", args, {envs = envs}) -- cgit v1.3.1