1
0
mirror of https://github.com/taigrr/yq synced 2025-01-18 04:53:17 -08:00

Removed debug printLn

This commit is contained in:
mfarah 2015-10-05 16:01:39 +11:00
parent c03c4813d4
commit 8409be1cdf

View File

@ -117,8 +117,7 @@ func readYaml(c *cli.Context, parsedData *map[interface{}]interface{}) {
}
var rawData []byte
fmt.Println("c.Args()[0]", c.Args()[0])
if( c.Args()[0] == "-") {
if c.Args()[0] == "-" {
rawData = readStdin()
} else {
rawData = readFile(c.Args()[0])