python-trezor/build_pb.sh

9 lines
168 B
Bash
Raw Normal View History

2013-11-22 08:33:33 -08:00
#!/bin/bash
2013-12-16 07:26:40 -08:00
CURDIR=$(pwd)
cd $CURDIR/../trezor-common/protob
for i in messages types ; do
protoc --python_out=$CURDIR/trezorlib/ -I/usr/include -I. $i.proto
done