fix: correct the value of ROOT_TASKFILE when no entrypoint (#2635)

This commit is contained in:
Timothy Rule
2026-01-25 16:06:13 +01:00
committed by GitHub
parent c3fd3c4b5e
commit 1bd5aa6bd5
5 changed files with 5 additions and 0 deletions

View File

@@ -67,6 +67,7 @@ func (e *Executor) getRootNode() (taskfile.Node, error) {
return nil, err
}
e.Dir = node.Dir()
e.Entrypoint = node.Location()
return node, err
}