mirror of
https://github.com/meshtastic/python.git
synced 2025-12-30 19:37:52 -05:00
8 lines
246 B
Bash
Executable File
8 lines
246 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
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 |