Merge pull request #116 from rxt1077/proto-fix

reserved word fix in regen-protos.sh
This commit is contained in:
Kevin Hester authored and GitHub committed 2021-11-04 11:25:22 -07:00
commit 729e93668c
1 file changed
+4 -1
+4 -1
View File
@@ -5,4 +5,7 @@ protoc -I=proto --python_out meshtastic `ls proto/*.proto`
# workaround for import bug in protoc https://github.com/protocolbuffers/protobuf/issues/1491#issuecomment-690618628
sed -i -E 's/^import.*_pb2/from . \0/' meshtastic/*.py
sed -i -E 's/^import.*_pb2/from . \0/' meshtastic/*.py
# automate the current workaround (may be related to Meshtastic-protobufs issue #27 https://github.com/meshtastic/Meshtastic-protobufs/issues/27)
sed -i "s/^None = 0/globals()['None'] = 0/" meshtastic/mesh_pb2.py