Merge branch 'master' into v3

This commit is contained in:
Andrey Nering
2019-11-24 21:02:33 -03:00
163 changed files with 4675 additions and 1305 deletions

View File

@@ -61,6 +61,7 @@ func main() {
silent bool
dry bool
summary bool
parallel bool
dir string
entrypoint string
output string
@@ -75,6 +76,7 @@ func main() {
pflag.BoolVarP(&watch, "watch", "w", false, "enables watch of the given task")
pflag.BoolVarP(&verbose, "verbose", "v", false, "enables verbose mode")
pflag.BoolVarP(&silent, "silent", "s", false, "disables echoing")
pflag.BoolVarP(&parallel, "parallel", "p", false, "executes tasks provided on command line in parallel")
pflag.BoolVar(&dry, "dry", false, "compiles and prints tasks in the order that they would be run, without executing them")
pflag.BoolVar(&summary, "summary", false, "show summary about a task")
pflag.StringVarP(&dir, "dir", "d", "", "sets directory of execution")
@@ -119,6 +121,7 @@ func main() {
Dry: dry,
Entrypoint: entrypoint,
Summary: summary,
Parallel: parallel,
Color: color,
Stdin: os.Stdin,