From 2ace0defd04bc2eb4b49fb251b93a5f6e350b475 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sindre=20R=C3=B8kenes=20Myren?= Date: Mon, 3 Jul 2017 14:59:06 +0200 Subject: [PATCH] Print command, also when "set:" is specified Always prints the command, even when the set-keyword is used within the task. --- task.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/task.go b/task.go index cc69bdfe..07378958 100644 --- a/task.go +++ b/task.go @@ -249,8 +249,8 @@ func (e *Executor) runCommand(ctx context.Context, task string, i int) error { Stderr: e.Stderr, } + e.println(c) if t.Set == "" { - e.println(c) opts.Stdout = e.Stdout if err = execext.RunCommand(opts); err != nil { return err