1
0
mirror of https://github.com/go-task/task.git synced 2025-07-17 01:43:07 +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
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"`
}