Add script to check if MANIFEST.json files change

This commit is contained in:
Martin Feckie 2015-11-19 22:17:29 +11:00
parent 7e5c45ddbf
commit cef839e454

4
etc/ci/manifest_changed.sh Executable file
View file

@ -0,0 +1,4 @@
#!/bin/bash
diff=$(git diff -- tests/**/MANIFEST.json)
echo "$diff"
[[ ! $diff ]]