Skip to content

Commit ac201b6

Browse files
committed
Update output message in spawnWithOutput and bump version to 1.1.2
1 parent 44249b3 commit ac201b6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

index.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ const spawnWithOutput = (command, args, options) => {
135135
if (checkForInputPrompt(stdout.trim())) {
136136
// If waiting for input, resolve early with the current output and a flag
137137
resolve({
138-
stdout,
138+
stdout: `You should add the parameter (-y) to confirm the execution\n${stdout}`,
139139
stderr,
140140
code: 0,
141141
});

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hyper-mcp-shell",
3-
"version": "1.1.1",
3+
"version": "1.1.2",
44
"description": "A shell for the ModelContextProtocol",
55
"module": "index.mjs",
66
"bin": {

0 commit comments

Comments
 (0)