Add TSV to machine-readable formats #467

Merged
lunny merged 2 commits from noerw/tea:fix-machinereadable into master 2022-03-13 04:00:22 +00:00
Showing only changes of commit caac2df2b9 - Show all commits

View File

@ -140,7 +140,7 @@ func outputyaml(headers []string, values [][]string) {
func isMachineReadable(outputFormat string) bool {
switch outputFormat {
case "yml", "yaml", "csv":
case "yml", "yaml", "csv", "tsv":
return true
}
return false