Added included taskfile directory resolving

This commit is contained in:
Evgeny Abramovich
2020-01-29 10:03:06 +03:00
parent eaba1b9cc8
commit 7a8142ed92
3 changed files with 10 additions and 5 deletions

View File

@@ -6,7 +6,7 @@ type Taskfile struct {
Expansions int
Output string
Method string
Includes map[string]string
Includes IncludedTaskFiles
Vars Vars
Env Vars
Tasks Tasks
@@ -20,7 +20,7 @@ func (tf *Taskfile) UnmarshalYAML(unmarshal func(interface{}) error) error {
Expansions int
Output string
Method string
Includes map[string]string
Includes IncludedTaskFiles
Vars Vars
Env Vars
Tasks Tasks