Skip to content

Commit 431a405

Browse files
committed
Fix double space after warning emoji
1 parent d785400 commit 431a405

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cmd/docker-mcp/commands/catalog_next.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ func pullCatalogNextCommand() *cobra.Command {
251251
Available Catalogs:
252252
Community Registry: ` + catalognext.CommunityRegistryCatalogRef + `
253253
254-
⚠️ Community Registry servers are not vetted by Docker`,
254+
⚠️ Community Registry servers are not vetted by Docker`,
255255
Example: ` # Pull the community MCP server catalog
256256
docker mcp catalog pull ` + catalognext.CommunityRegistryCatalogRef + `
257257

pkg/catalog_next/pull.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ func Pull(ctx context.Context, dao db.DAO, ociService oci.Service, refStr string
3030
fmt.Printf("Catalog %s pulled\n", catalog.Ref)
3131

3232
if catalog.Ref == CommunityRegistryCatalogRef {
33-
fmt.Fprintf(os.Stderr, "\n⚠️ Community Registry servers are not vetted by Docker.\n")
33+
fmt.Fprintf(os.Stderr, "\n⚠️ Community Registry servers are not vetted by Docker.\n")
3434
}
3535

3636
success = true

0 commit comments

Comments
 (0)