taskrunner
taskrunner copied to clipboard
Add verbose flag
What was changed?
Adds -v flag to taskrunner

@jsm there's now an API to do this 😄
@berfarah cool! deets? Should I close this?
@jsm You can add it to clireporter via the option:
func (r *Runtime) {
var configObj somestruct
r.WithFlag(f flags) {
f.BoolVar(&configObj.Verbose, "verbose", false, "...")
}
}