diff --git a/lbrynet/schema/Makefile b/lbrynet/schema/Makefile index 8f7e59b5f..461579cfe 100644 --- a/lbrynet/schema/Makefile +++ b/lbrynet/schema/Makefile @@ -1,2 +1,6 @@ build: - cd ../../ && ~/bin/protoc --python_out=. lbrynet/schema/proto/*.proto + rm proto/* -rf + cd proto && protoc --python_out=. -I ../../../../types/proto/ ../../../../types/proto/*.proto + sed -e 's/^import\ \(.*\)_pb2\ /from . import\ \1_pb2\ /g' -i proto/*.py + touch proto/__init__.py +