@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 +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
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:
|
|
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:
|
|
4235
|
+
shell: process.platform === "win32"
|
|
4236
4236
|
});
|
|
4237
4237
|
let resolved = false;
|
|
4238
4238
|
let isShuttingDown = false;
|