1
0
mirror of https://github.com/go-task/task.git synced 2024-12-14 10:52:43 +02:00
task/internal/taskfile/merge.go

39 lines
899 B
Go
Raw Normal View History

package taskfile
import (
"fmt"
2018-09-10 03:29:29 +02:00
"strings"
)
2018-09-10 03:29:29 +02:00
// NamespaceSeparator contains the character that separates namescapes
const NamespaceSeparator = ":"
// Merge merges the second Taskfile into the first
2018-09-10 03:29:29 +02:00
func Merge(t1, t2 *Taskfile, namespaces ...string) error {
if t1.Version != t2.Version {
return fmt.Errorf(`Taskfiles versions should match. First is "%s" but second is "%s"`, t1.Version, t2.Version)
}
if t2.Expansions != 0 && t2.Expansions != 2 {
t1.Expansions = t2.Expansions
}
if t2.Output != "" {
t1.Output = t2.Output
}
2018-09-10 03:29:29 +02:00
for k, v := range t2.Includes {
t1.Includes[k] = v
}
for k, v := range t2.Vars {
t1.Vars[k] = v
}
for k, v := range t2.Tasks {
2018-09-10 03:29:29 +02:00
t1.Tasks[taskNameWithNamespace(k, namespaces...)] = v
}
return nil
}
2018-09-10 03:29:29 +02:00
func taskNameWithNamespace(taskName string, namespaces ...string) string {
return strings.Join(append(namespaces, taskName), NamespaceSeparator)
}