annotate test.sh @ 110:17d6e8f89bc2

More notes
author Chris Cannam <c.cannam@qmul.ac.uk>
date Thu, 17 Mar 2016 12:40:46 +0000
parents 12e43b583554
children a5eb5ef2e92d
rev   line source
c@103 1 #!/bin/bash
c@103 2
c@103 3 set -eu
c@103 4
c@103 5 for ex in examples/*.json ; do
c@103 6 echo "Checking $ex..." 1>&2
c@103 7 jsonschema -i "$ex" schema/$(basename "$ex")
c@103 8 done
c@103 9