Skip to content

Commit 14b0181

Browse files
prettier
1 parent cf7c138 commit 14b0181

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

cli/src/cli.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,8 @@ async function runCli(args: Args): Promise<void> {
130130
// Add transport flag if specified
131131
if (args.transport && args.transport !== "stdio") {
132132
// Convert streamable-http back to http for CLI mode
133-
const cliTransport = args.transport === "streamable-http" ? "http" : args.transport;
133+
const cliTransport =
134+
args.transport === "streamable-http" ? "http" : args.transport;
134135
cliArgs.push("--transport", cliTransport);
135136
}
136137

@@ -307,7 +308,7 @@ function parseArgs(): Args {
307308
// Otherwise use command line arguments
308309
const command = finalArgs[0] || "";
309310
const args = finalArgs.slice(1);
310-
311+
311312
// Map "http" shorthand to "streamable-http"
312313
let transport = options.transport;
313314
if (transport === "http") {

0 commit comments

Comments
 (0)