diff --git a/Makefile b/Makefile index 400318bb..5e4534d0 100644 --- a/Makefile +++ b/Makefile @@ -40,7 +40,7 @@ test: format: find -type f -name '*.go' -not -path './old/*' -not -path './tmp/*' -exec gofmt -w {} \; - find -type f -name '*.yaml' -not -path './old/*' -not -path './tmp/*' -exec ruby -e "require 'yaml'; x=YAML.load_file('{}').to_yaml; File.open('{}', 'w').write x" \; + find -type f -name '*.yaml' -not -path './old/*' -not -path './tmp/*' -not -path './omv.yaml' -exec ruby -e "require 'yaml'; x=YAML.load_file('{}').to_yaml; File.open('{}', 'w').write x" \; docs: mgmt-documentation.pdf diff --git a/test/test-yamlfmt.sh b/test/test-yamlfmt.sh index 399eacd8..3a914dd1 100755 --- a/test/test-yamlfmt.sh +++ b/test/test-yamlfmt.sh @@ -30,6 +30,7 @@ find_files() { \( \ -wholename './old' \ -o -wholename './tmp' \ + -o -wholename './omv.yaml' \ \) -prune \ \) -name '*.yaml' }