From 33d4ad4d8455bec25562e7ac1d7693a4db6b2bb1 Mon Sep 17 00:00:00 2001 From: jaedle Date: Sun, 24 Feb 2019 15:38:18 +0100 Subject: [PATCH] rename to summary --- task.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/task.go b/task.go index c47ec7f0..4506bd2e 100644 --- a/task.go +++ b/task.go @@ -65,7 +65,7 @@ func (e *Executor) Run(ctx context.Context, calls ...taskfile.Call) error { } if e.Summary { - e.printTaskDetails(calls[0].Task) + e.printTaskSummary(calls[0].Task) return nil } @@ -81,7 +81,7 @@ func (e *Executor) Run(ctx context.Context, calls ...taskfile.Call) error { return nil } -func (e *Executor) printTaskDetails(task string) { +func (e *Executor) printTaskSummary(task string) { t := e.Taskfile.Tasks[task] s := t.Summary if s == "" {