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 318f9b2 commit b5b2649Copy full SHA for b5b2649
status.go
@@ -12,9 +12,9 @@ import (
12
// Status returns an error if any the of given tasks is not up-to-date
13
func (e *Executor) Status(calls ...taskfile.Call) error {
14
for _, call := range calls {
15
- t, ok := e.Taskfile.Tasks[call.Task]
16
- if !ok {
17
- return &taskNotFoundError{taskName: call.Task}
+ t, err := e.CompiledTask(call)
+ if err != nil {
+ return err
18
}
19
isUpToDate, err := isTaskUpToDate(e.Context, t)
20
if err != nil {
0 commit comments