1
0
mirror of https://github.com/go-task/task.git synced 2025-11-27 22:38:20 +02:00

go fmt internal/taskfile/task.go

This commit is contained in:
Andrey Nering
2019-12-07 20:09:16 -03:00
parent 7373639f57
commit b7bcd204b4

View File

@@ -5,20 +5,20 @@ type Tasks map[string]*Task
// Task represents a task // Task represents a task
type Task struct { type Task struct {
Task string Task string
Cmds []*Cmd Cmds []*Cmd
Deps []*Dep Deps []*Dep
Desc string Desc string
Summary string Summary string
Sources []string Sources []string
Generates []string Generates []string
Status []string Status []string
Preconditions []*Precondition Preconditions []*Precondition
Dir string Dir string
Vars Vars Vars Vars
Env Vars Env Vars
Silent bool Silent bool
Method string Method string
Prefix string Prefix string
IgnoreError bool `yaml:"ignore_error"` IgnoreError bool `yaml:"ignore_error"`
} }