From b7bcd204b4f240e1b3b9bb7bebbc7e70e494d4be Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Sat, 7 Dec 2019 20:09:16 -0300 Subject: [PATCH] go fmt internal/taskfile/task.go --- internal/taskfile/task.go | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/internal/taskfile/task.go b/internal/taskfile/task.go index bc4bf981..36b4e9cf 100644 --- a/internal/taskfile/task.go +++ b/internal/taskfile/task.go @@ -5,20 +5,20 @@ type Tasks map[string]*Task // Task represents a task type Task struct { - Task string - Cmds []*Cmd - Deps []*Dep - Desc string - Summary string - Sources []string - Generates []string - Status []string + Task string + Cmds []*Cmd + Deps []*Dep + Desc string + Summary string + Sources []string + Generates []string + Status []string Preconditions []*Precondition - Dir string - Vars Vars - Env Vars - Silent bool - Method string - Prefix string - IgnoreError bool `yaml:"ignore_error"` + Dir string + Vars Vars + Env Vars + Silent bool + Method string + Prefix string + IgnoreError bool `yaml:"ignore_error"` }