To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

The primary repository for this project is hosted at https://github.com/piper-audio/piper .
This repository is a read-only copy which is updated automatically every hour.

Statistics Download as Zip
| Branch: | Revision:

root / capnp / check.sh @ 90:2d4caf268062

History | View | Annotate | Download (158 Bytes)

1
#!/bin/bash
2

    
3
mydir=$(dirname "$0")
4

    
5
set -eu
6

    
7
echo
8

    
9
for c in "$mydir"/*.capnp ; do
10
    echo "Checking $c..." 1>&2
11
    capnpc -o- "$c" >/dev/null
12
done
13

    
14
echo OK