taskrunner icon indicating copy to clipboard operation
taskrunner copied to clipboard

Add verbose flag

Open jsm opened this issue 6 years ago • 3 comments

What was changed?

Adds -v flag to taskrunner

image

jsm avatar Aug 29 '18 20:08 jsm

@jsm there's now an API to do this 😄

berfarah avatar Nov 13 '18 00:11 berfarah

@berfarah cool! deets? Should I close this?

jsm avatar Nov 13 '18 19:11 jsm

@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, "...")
  }
}

berfarah avatar Nov 13 '18 21:11 berfarah