remove json conversion for now

This commit is contained in:
Mike Farah 2019-12-06 16:52:00 +11:00
parent 676fc63219
commit dad61ec615
1 changed files with 0 additions and 2 deletions

2
yq.go
View File

@ -21,7 +21,6 @@ var rawOutput = false
var customTag = "" var customTag = ""
var writeInplace = false var writeInplace = false
var writeScript = "" var writeScript = ""
var outputToJSON = false
var overwriteFlag = false var overwriteFlag = false
var allowEmptyFlag = false var allowEmptyFlag = false
var appendFlag = false var appendFlag = false
@ -105,7 +104,6 @@ yq r -- things.yaml --key-starting-with-dashes
} }
cmdRead.PersistentFlags().StringVarP(&docIndex, "doc", "d", "0", "process document index number (0 based, * for all documents)") cmdRead.PersistentFlags().StringVarP(&docIndex, "doc", "d", "0", "process document index number (0 based, * for all documents)")
cmdRead.PersistentFlags().BoolVarP(&rawOutput, "raw", "r", false, "raw yaml output - prints out values instead of yaml") cmdRead.PersistentFlags().BoolVarP(&rawOutput, "raw", "r", false, "raw yaml output - prints out values instead of yaml")
cmdRead.PersistentFlags().BoolVarP(&outputToJSON, "tojson", "j", false, "output as json")
return cmdRead return cmdRead
} }