1
0
mirror of https://github.com/go-task/task.git synced 2025-11-29 22:48:03 +02:00

Fix typos per review

This commit is contained in:
Stephen Prater
2019-06-11 11:46:22 -07:00
parent 12ab01d5e6
commit d1463b3e24
5 changed files with 9 additions and 13 deletions

View File

@@ -233,7 +233,6 @@ func (e *Executor) runDeps(ctx context.Context, t *taskfile.Task) error {
g.Go(func() error {
err := e.RunTask(ctx, taskfile.Call{Task: d.Task, Vars: d.Vars})
if err != nil {
e.Logger.Errf("%s", err)
return err
}
return nil
@@ -250,7 +249,6 @@ func (e *Executor) runCommand(ctx context.Context, t *taskfile.Task, call taskfi
case cmd.Task != "":
err := e.RunTask(ctx, taskfile.Call{Task: cmd.Task, Vars: cmd.Vars})
if err != nil {
e.Logger.Errf("%s", err)
return err
}
return nil