@rishibhushan/jenkins-mcp-server 1.1.3 → 1.1.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/bin/jenkins-mcp.js +4 -4
- package/package.json +1 -1
package/bin/jenkins-mcp.js
CHANGED
|
@@ -261,7 +261,7 @@ function ensureVenv(pythonCmd) {
|
|
|
261
261
|
|
|
262
262
|
const result = spawnSync(pythonCmd, ['-m', 'venv', venvPath], {
|
|
263
263
|
cwd: projectRoot,
|
|
264
|
-
stdio: 'inherit'
|
|
264
|
+
stdio: ['ignore', 'pipe', 'inherit']
|
|
265
265
|
});
|
|
266
266
|
|
|
267
267
|
if (result.status !== 0) {
|
|
@@ -432,7 +432,7 @@ function installDependencies(venvPath) {
|
|
|
432
432
|
'-r', requirementsPath
|
|
433
433
|
], {
|
|
434
434
|
cwd: projectRoot,
|
|
435
|
-
stdio: 'inherit'
|
|
435
|
+
stdio: ['ignore', 'pipe', 'inherit']
|
|
436
436
|
});
|
|
437
437
|
|
|
438
438
|
if (installReqs.status !== 0) {
|
|
@@ -511,7 +511,7 @@ function installDependencies(venvPath) {
|
|
|
511
511
|
|
|
512
512
|
const installReqs = spawnSync(pip, pipArgs, {
|
|
513
513
|
cwd: projectRoot,
|
|
514
|
-
stdio: 'inherit',
|
|
514
|
+
stdio: ['ignore', 'pipe', 'inherit'],
|
|
515
515
|
env: pipEnv
|
|
516
516
|
});
|
|
517
517
|
|
|
@@ -548,7 +548,7 @@ function installDependencies(venvPath) {
|
|
|
548
548
|
|
|
549
549
|
const installPkg = spawnSync(pip, packageArgs, {
|
|
550
550
|
cwd: projectRoot,
|
|
551
|
-
stdio: 'inherit'
|
|
551
|
+
stdio: ['ignore', 'pipe', 'inherit']
|
|
552
552
|
});
|
|
553
553
|
|
|
554
554
|
if (installPkg.status !== 0) {
|