add verbose mode (-v flag)

This commit is contained in:
Andrey Nering
2017-07-05 20:55:50 -03:00
parent a1d1f73fe7
commit 222b5cb587
4 changed files with 24 additions and 7 deletions

View File

@@ -21,10 +21,11 @@ const (
// Executor executes a Taskfile
type Executor struct {
Tasks Tasks
Dir string
Force bool
Watch bool
Tasks Tasks
Dir string
Force bool
Watch bool
Verbose bool
Stdin io.Reader
Stdout io.Writer