mcp-server-commands 0.7.2 → 0.7.4
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/build/exec-utils.js +1 -1
- package/package.json +1 -1
package/build/exec-utils.js
CHANGED
|
@@ -11,7 +11,7 @@ export async function spawn_wrapped(command, args, stdin, options) {
|
|
|
11
11
|
}
|
|
12
12
|
const child = spawn(command, args, options);
|
|
13
13
|
// PRN return pid to callers?
|
|
14
|
-
console.log(`child.pid: ${child.pid}`);
|
|
14
|
+
// console.log(`child.pid: ${child.pid}`);
|
|
15
15
|
let stdout = "";
|
|
16
16
|
let stderr = "";
|
|
17
17
|
if (child.stdin && stdin) {
|