1
0
mirror of https://github.com/go-task/task.git synced 2025-06-23 00:38:19 +02:00

feat: merger

This commit is contained in:
Pete Davison
2024-01-04 11:58:46 +00:00
parent 6854b4c300
commit fb9f6c20ab
6 changed files with 130 additions and 8 deletions

View File

@ -79,6 +79,9 @@ func (e *Executor) readTaskfile(node taskfile.Node) error {
if err := graph.Visualize("./taskfile-dag.gv"); err != nil {
return err
}
if e.Taskfile, err = graph.Merge(); err != nil {
return err
}
return nil
}