We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 814f350 commit bfc0339Copy full SHA for bfc0339
watch.go
@@ -91,6 +91,10 @@ func (e *Executor) watchTasks(calls ...taskfile.Call) error {
91
}
92
93
func isContextError(err error) bool {
94
+ if taskRunErr, ok := err.(*taskRunError); ok {
95
+ err = taskRunErr.err
96
+ }
97
+
98
return err == context.Canceled || err == context.DeadlineExceeded
99
100
0 commit comments