From a4477b8befb4f0caaf4e3fafbe5a703b6fa4a698 Mon Sep 17 00:00:00 2001 From: Jan Pochyla Date: Tue, 27 Feb 2018 00:08:23 +0100 Subject: [PATCH] tools/build_protobuf: fix path to trezor_common --- tools/build_protobuf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100755 => 100644 tools/build_protobuf diff --git a/tools/build_protobuf b/tools/build_protobuf old mode 100755 new mode 100644 index 12087d1e3..791ddf63c --- a/tools/build_protobuf +++ b/tools/build_protobuf @@ -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