go-godo / godo

golang build tool in the spirt of rake, gulp
MIT License
536 stars 31 forks source link

Context.RunOutput and Context.BashOutput don't return 2 values #52

Open sytabaresa opened 7 years ago

sytabaresa commented 7 years ago

Hello, In the README you use two values of return for RunOutput method:

output, err := c.RunOutput("whoami")

and the same for c.BashOutput

but in the package only returns a string: https://godoc.org/github.com/go-godo/godo#Context.RunOutput

Which is wrong?