Merge branch 'master' into v3

This commit is contained in:
Andrey Nering
2020-05-16 10:28:00 -03:00
199 changed files with 46645 additions and 39197 deletions

View File

@@ -92,6 +92,10 @@ func (e *Executor) watchTasks(calls ...taskfile.Call) error {
}
func isContextError(err error) bool {
if taskRunErr, ok := err.(*taskRunError); ok {
err = taskRunErr.err
}
return err == context.Canceled || err == context.DeadlineExceeded
}