We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12d92e0 commit 928d9d3Copy full SHA for 928d9d3
cli/core/search.go
@@ -51,7 +51,10 @@ func runSearchCommand(cmd *cobra.Command, args []string) {
51
logrus.Info("Executing `arduino core search`")
52
53
arguments := strings.ToLower(strings.Join(args, " "))
54
- feedback.Printf("Searching for platforms matching '%s'", arguments)
+
55
+ if globals.OutputFormat != "json" {
56
+ feedback.Printf("Searching for platforms matching '%s'", arguments)
57
+ }
58
59
resp, err := core.PlatformSearch(context.Background(), &rpc.PlatformSearchReq{
60
Instance: instance,
0 commit comments