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 50ab64f commit 09b4da6Copy full SHA for 09b4da6
commands/board/list.go
@@ -35,13 +35,13 @@ func initListCommand() *cobra.Command {
35
Use: "list",
36
Short: "List connected boards.",
37
Long: "Detects and displays a list of connected boards to the current computer.",
38
- Example: " " + commands.AppName + " board list --timeout 10s",
+ Example: " " + commands.AppName + " board list",
39
Args: cobra.NoArgs,
40
Run: runListCommand,
41
}
42
43
- listCommand.Flags().StringVar(&listFlags.timeout, "timeout", "5s",
44
- "The timeout of the search of connected devices, try to high it if your board is not found (e.g. to 10s).")
+ listCommand.Flags().StringVar(&listFlags.timeout, "timeout", "1s",
+ "The timeout of the search of connected devices, try to increase it if your board is not found (e.g. to 10s).")
45
return listCommand
46
47
0 commit comments