mirror of
https://github.com/go-task/task.git
synced 2024-12-14 10:52:43 +02:00
aac6c5a1c7
Closes #138
45 lines
930 B
Go
45 lines
930 B
Go
package taskfile
|
|
|
|
// Taskfile represents a Taskfile.yml
|
|
type Taskfile struct {
|
|
Version string
|
|
Expansions int
|
|
Output string
|
|
Includes map[string]string
|
|
Vars Vars
|
|
Env Vars
|
|
Tasks Tasks
|
|
}
|
|
|
|
// UnmarshalYAML implements yaml.Unmarshaler interface
|
|
func (tf *Taskfile) UnmarshalYAML(unmarshal func(interface{}) error) error {
|
|
if err := unmarshal(&tf.Tasks); err == nil {
|
|
tf.Version = "1"
|
|
return nil
|
|
}
|
|
|
|
var taskfile struct {
|
|
Version string
|
|
Expansions int
|
|
Output string
|
|
Includes map[string]string
|
|
Vars Vars
|
|
Env Vars
|
|
Tasks Tasks
|
|
}
|
|
if err := unmarshal(&taskfile); err != nil {
|
|
return err
|
|
}
|
|
tf.Version = taskfile.Version
|
|
tf.Expansions = taskfile.Expansions
|
|
tf.Output = taskfile.Output
|
|
tf.Includes = taskfile.Includes
|
|
tf.Vars = taskfile.Vars
|
|
tf.Env = taskfile.Env
|
|
tf.Tasks = taskfile.Tasks
|
|
if tf.Expansions <= 0 {
|
|
tf.Expansions = 2
|
|
}
|
|
return nil
|
|
}
|