mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
6980be3800
Adds merge command for merging multiple yaml files together. Resolves: #31
13 lines
206 B
Go
13 lines
206 B
Go
package main
|
|
|
|
import (
|
|
"github.com/imdario/mergo"
|
|
)
|
|
|
|
func merge(dst, src interface{}, overwrite bool) error {
|
|
if overwrite {
|
|
return mergo.MergeWithOverwrite(dst, src)
|
|
}
|
|
return mergo.Merge(dst, src)
|
|
}
|