mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-13 22:38:04 +00:00
6980be3800
Adds merge command for merging multiple yaml files together. Resolves: #31
10 lines
185 B
Bash
Executable File
10 lines
185 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
govendor fetch github.com/op/go-logging
|
|
govendor fetch github.com/spf13/cobra
|
|
govendor fetch gopkg.in/yaml.v2
|
|
govendor fetch github.com/imdario/mergo
|
|
govendor sync
|