// NOTE(taylor): A possible refactor here is that we can implement all the
// validation for the OutputFormat type here so we don't have to do the
// parsing and checking in the command
cmd.Flags().StringVarP(varRef,outputFlag,"o",output.Table.String(),fmt.Sprintf("prints the output in the specified format. Allowed values: %s, %s, %s",output.Table,output.JSON,output.YAML))
cmd.Flags().VarP(newOutputValue(output.Table,varRef),outputFlag,"o",fmt.Sprintf("prints the output in the specified format. Allowed values: %s, %s, %s",output.Table,output.JSON,output.YAML))
f.IntVarP(&client.Limit,"max","m",256,"maximum number of releases to fetch")
f.IntVar(&client.Offset,"offset",0,"next release name in the list, used to offset from start value")
f.StringVarP(&client.Filter,"filter","f","","a regular expression (Perl compatible). Any releases that match the expression will be included in the results")