tools/build_protobuf: fix path to trezor_common

This commit is contained in:
Jan Pochyla 2018-02-27 00:08:23 +01:00
parent fd95bb482e
commit a4477b8bef
1 changed files with 1 additions and 1 deletions

2
tools/build_protobuf Executable file → Normal file
View File

@ -18,7 +18,7 @@ echo '' >> $INDEX
for i in types messages ; do
# Compile .proto files to python2 modules using google protobuf library
cd $CURDIR/../../trezor-common/protob
cd $CURDIR/../vendor/trezor-common/protob
protoc --python_out=$PB2DIR -I/usr/include -I. $i.proto
done