Skip to content

Commit 1af8366

Browse files
authored
[skip changelog] Specify list format for --additional-urls option (#917)
In order to specify multiple Boards Manager URLs via a single --additional-urls option, they must be in a comma-separated list.
1 parent 48383da commit 1af8366

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: cli/cli.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ func createCliCommandTree(cmd *cobra.Command) {
106106
viper.BindPFlag("logging.format", cmd.PersistentFlags().Lookup("log-format"))
107107
cmd.PersistentFlags().StringVar(&outputFormat, "format", "text", "The output format, can be {text|json}.")
108108
cmd.PersistentFlags().StringVar(&configFile, "config-file", "", "The custom config file (if not specified the default will be used).")
109-
cmd.PersistentFlags().StringSlice("additional-urls", []string{}, "Additional URLs for the board manager.")
109+
cmd.PersistentFlags().StringSlice("additional-urls", []string{}, "Comma-separated list of additional URLs for the board manager.")
110110
viper.BindPFlag("board_manager.additional_urls", cmd.PersistentFlags().Lookup("additional-urls"))
111111
}
112112

0 commit comments

Comments
 (0)