fix(influx): bad shorthand var for pkg command

pull/15945/head
Johnny Steenbergen 2019-11-15 10:37:48 -08:00 committed by Johnny Steenbergen
parent 626b719769
commit e88fa7d90a
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ func pkgApplyCmd() *cobra.Command {
cmd.MarkFlagRequired("org-id")
hasColor := cmd.Flags().BoolP("color", "c", true, "Enable color in output, defaults true")
hasTableBorders := cmd.Flags().BoolP("table-borders", "tb", true, "Enable table borders, defaults true")
hasTableBorders := cmd.Flags().Bool("table-borders", true, "Enable table borders, defaults true")
cmd.RunE = pkgApplyRunEFn(orgID, path, hasColor, hasTableBorders)