@mcp-use/cli 2.8.0-canary.9 → 2.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -4200,7 +4200,7 @@ function runCommand(command, args, cwd, env2, filterStderr = false) {
4200
4200
  const proc = (0, import_node_child_process10.spawn)(command, args, {
4201
4201
  cwd,
4202
4202
  stdio: filterStderr ? ["inherit", "inherit", "pipe"] : "inherit",
4203
- shell: false,
4203
+ shell: process.platform === "win32",
4204
4204
  env: env2 ? { ...process.env, ...env2 } : process.env
4205
4205
  });
4206
4206
  if (filterStderr && proc.stderr) {
@@ -4232,7 +4232,7 @@ async function startTunnel(port, subdomain) {
4232
4232
  }
4233
4233
  const proc = (0, import_node_child_process10.spawn)("npx", tunnelArgs, {
4234
4234
  stdio: ["ignore", "pipe", "pipe"],
4235
- shell: false
4235
+ shell: process.platform === "win32"
4236
4236
  });
4237
4237
  let resolved = false;
4238
4238
  let isShuttingDown = false;