Skip to content

Commit 2a655ab

Browse files
committed
Add a println after printing the description
1 parent 6909e19 commit 2a655ab

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • mcp/mcp-cli/src/main/java/software/amazon/smithy/java/mcp/cli/commands

mcp/mcp-cli/src/main/java/software/amazon/smithy/java/mcp/cli/commands/ListBundles.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ public class ListBundles extends SmithyMcpCommand {
2929
protected void execute(ExecutionContext context) {
3030
var registry = context.registry();
3131
var installedBundles = context.config().getToolBundles().keySet();
32-
for (BundleMetadata bundle : registry
33-
.listMcpBundles()) {
32+
for (BundleMetadata bundle : registry.listMcpBundles()) {
3433
boolean isInstalled = installedBundles.contains(bundle.getName());
3534
var commandLine = spec.commandLine();
3635
System.out.println(commandLine
@@ -42,6 +41,7 @@ protected void execute(ExecutionContext context) {
4241
}
4342
System.out.print("\tDescription: ");
4443
System.out.println(description);
44+
System.out.println();
4545
}
4646

4747
}

0 commit comments

Comments
 (0)