mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-05 14:59:44 +00:00
17 lines
460 B
Bash
Executable File
17 lines
460 B
Bash
Executable File
#!/bin/bash
|
|
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
|
|
|
|
# hack to make output python 3 compatible
|
|
sed -i 's/^import types_pb2/from . import types_pb2/g' $CURDIR/trezorlib/messages_pb2.py
|
|
|
|
# add version
|
|
PROTOC_VER=$(protoc --version)
|
|
PROTOB_REV=$(git rev-parse HEAD)
|
|
sed -i "3i# $PROTOC_VER\n# trezor-common $PROTOB_REV" $CURDIR/trezorlib/*_pb2.py
|