1
0
mirror of https://github.com/go-task/task.git synced 2025-04-02 22:15:30 +02:00
task/taskfile/defer.go
Jacob McCollum 09c9d55695 Changes from PR Review:
- Remove ^task syntax from `defer`
- Support task call syntax in defer
2022-01-02 16:38:06 -05:00

39 lines
833 B
Go

package taskfile
// Defer is the parameters to a defer operation.
// It can be exactly one of:
// - A string command
// - A task call
type Defer struct {
Cmd string
Call *Call
}
// isValid returns true when Defer describes a valid action.
// In order for a Defer to be valid, one of Cmd or Call.Task
// must be non-empty.
func (d *Defer) isValid() bool {
return d.Cmd != "" || (d.Call != nil && d.Call.Task != "")
}
// UnmarshalYAML implements yaml.Unmarshaler interface
func (d *Defer) UnmarshalYAML(unmarshal func(interface{}) error) error {
var cmd string
if err := unmarshal(&cmd); err == nil {
d.Cmd = cmd
return nil
}
var taskCall struct {
Task string
Vars *Vars
}
if err := unmarshal(&taskCall); err != nil {
return err
}
d.Call = &Call{
Task: taskCall.Task,
Vars: taskCall.Vars,
}
return nil
}