Manually implement merging of Taskfiles and remove dependency on github.com/imdario/mergo

I was carreful enough to check the behavior keeps the same
This commit is contained in:
Andrey Nering
2018-07-22 17:54:44 -03:00
parent da1b0c9558
commit cc6f7b6088
2 changed files with 28 additions and 5 deletions

View File

@@ -8,7 +8,6 @@ import (
"github.com/go-task/task/internal/taskfile"
"github.com/imdario/mergo"
"gopkg.in/yaml.v2"
)
@@ -26,10 +25,7 @@ func Taskfile(dir string) (*taskfile.Taskfile, error) {
if err != nil {
return nil, err
}
if t.Version != osTaskfile.Version {
return nil, fmt.Errorf(`Taskfile versions should match. Taskfile.yml is "%s" but Taskfile_%s.yml is "%s"`, t.Version, runtime.GOOS, osTaskfile.Version)
}
if err = mergo.MapWithOverwrite(&t.Tasks, osTaskfile.Tasks); err != nil {
if err = taskfile.Merge(t, osTaskfile); err != nil {
return nil, err
}
}