Mercurial > hg > piper
view capnp/check.sh @ 203:38ed3dcdbe21
Merge pull request #2 from piper-audio/fix/schema-typos
Fix id fields not updated after previous renaming.
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Mon, 20 Feb 2017 19:58:13 +0000 |
parents | 549d3d44d729 |
children |
line wrap: on
line source
#!/bin/bash mydir=$(dirname "$0") set -eu echo for c in "$mydir"/*.capnp ; do echo "Checking $c..." 1>&2 capnpc -o- "$c" >/dev/null done echo OK