]> git.sesse.net Git - mlt/blobdiff - Makefile
partially fix leak of service allocated in on_start_xxx
[mlt] / Makefile
index a2025c5ef8de0a27b2c19c8c664d716f62880721..fbdf16d6abfaa973a7cba008948cf9c1ffaa4aad 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -53,7 +53,7 @@ dist:
        git archive --format=tar --prefix=mlt-$(version)/ v$(version) | gzip >mlt-$(version).tar.gz
 
 validate-yml:
-       for file in `find ./ -type f -name \*.yml`; do \
+       for file in `find src/modules -type f -name \*.yml`; do \
                echo "validate: $$file"; \
-               kwalify -f src/framework/metaschema.yaml $$file; \
+               kwalify -f src/framework/metaschema.yaml $$file || exit 1; \
        done