Skip to content

Commit 3971098

Browse files
committed
fix: remove verbosity flag from mcp left in by mistake
1 parent c3255c1 commit 3971098

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

src/coalesce-mcp/src/tools/coalesce-generate.ts

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,10 @@ async function runCoalesceGeneration(
4040
const absoluteConfigPath = path.resolve(configPath);
4141

4242
return new Promise((resolve, reject) => {
43-
const process = spawn(
44-
"dotnet",
45-
["coalesce", "-v", "warning", absoluteConfigPath],
46-
{
47-
cwd: webProjectPath,
48-
stdio: ["pipe", "pipe", "pipe"],
49-
},
50-
);
43+
const process = spawn("dotnet", ["coalesce", absoluteConfigPath], {
44+
cwd: webProjectPath,
45+
stdio: ["pipe", "pipe", "pipe"],
46+
});
5147

5248
let stdout = "";
5349
let stderr = "";

0 commit comments

Comments
 (0)