1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-12 10:58:59 +00:00
trezor-firmware/build_pb.sh

9 lines
168 B
Bash
Raw Normal View History

2013-11-22 16:33:33 +00:00
#!/bin/bash
2013-12-16 15:26:40 +00: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