lens: Fix db type flag name #631
1 changed files with 1 additions and 1 deletions
|
@ -37,6 +37,6 @@ func AddOutputFileFlag(cmd *cobra.Command, v *string) {
|
||||||
|
|
||||||
// AddDBTypeFlag adds the DB type flag to the passed cobra command.
|
// AddDBTypeFlag adds the DB type flag to the passed cobra command.
|
||||||
func AddDBTypeFlag(cmd *cobra.Command, v *string) {
|
func AddDBTypeFlag(cmd *cobra.Command, v *string) {
|
||||||
cmd.Flags().StringVar(v, flagOutFile, "bbolt",
|
cmd.Flags().StringVar(v, flagDBType, "bbolt",
|
||||||
"Type of DB used by write cache (default: bbolt)")
|
"Type of DB used by write cache (default: bbolt)")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue