mirror of
				https://github.com/go-task/task.git
				synced 2025-10-30 23:58:01 +02:00 
			
		
		
		
	| @@ -12,9 +12,9 @@ import ( | ||||
| // Status returns an error if any the of given tasks is not up-to-date | ||||
| func (e *Executor) Status(calls ...taskfile.Call) error { | ||||
| 	for _, call := range calls { | ||||
| 		t, ok := e.Taskfile.Tasks[call.Task] | ||||
| 		if !ok { | ||||
| 			return &taskNotFoundError{taskName: call.Task} | ||||
| 		t, err := e.CompiledTask(call) | ||||
| 		if err != nil { | ||||
| 			return err | ||||
| 		} | ||||
| 		isUpToDate, err := isTaskUpToDate(e.Context, t) | ||||
| 		if err != nil { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user