From c5b5741e46d130803935b37d9670a15ee5663926 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Sun, 22 May 2016 11:05:58 +0100 Subject: [PATCH] fix Makefile to use protoc3 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a26d152..6829004 100644 --- a/Makefile +++ b/Makefile @@ -65,7 +65,7 @@ pb_fetch: pb_compile: for filepath in `ls ./protobufs/*.proto`; do \ - ./tools/protoc3 --python_out ./steam/protobufs/ --proto_path=./tools/protobuf/src --proto_path=./protobufs "$$filepath"; \ + protoc3 --python_out ./steam/protobufs/ --proto_path=./tools/protobuf/src --proto_path=./protobufs "$$filepath"; \ done; sed -i 's/^import /import steam.protobufs./' steam/protobufs/*_pb2.py