mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-05 23:10:12 +00:00
9 lines
168 B
Bash
Executable File
9 lines
168 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
|