1
0
mirror of https://github.com/go-task/task.git synced 2025-11-23 22:24:45 +02:00

Improve performance of --list and --summary flags

Closes #332
This commit is contained in:
Andrey Nering
2021-01-12 12:03:04 -03:00
parent c11672fca3
commit bf6d0c0a74
7 changed files with 50 additions and 11 deletions

View File

@@ -71,7 +71,7 @@ func (e *Executor) Run(ctx context.Context, calls ...taskfile.Call) error {
if e.Summary {
for i, c := range calls {
compiledTask, err := e.CompiledTask(c)
compiledTask, err := e.FastCompiledTask(c)
if err != nil {
return nil
}