1
0
mirror of https://github.com/go-task/task.git synced 2025-06-29 00:51:43 +02:00

feat: invert call.Direct (#1459)

This commit is contained in:
Pete Davison
2024-01-11 00:32:49 +00:00
committed by GitHub
parent 07e6f5cad7
commit 42af0fc791
6 changed files with 22 additions and 22 deletions

View File

@ -2,8 +2,8 @@ package ast
// Call is the parameters to a task call
type Call struct {
Task string
Vars *Vars
Silent bool
Direct bool // Was the task called directly or via another task?
Task string
Vars *Vars
Silent bool
Indirect bool // True if the task was called by another task
}