mirror of
https://github.com/exo-explore/exo.git
synced 2026-09-17 16:03:59 -04:00
8 lines
222 B
Bash
8 lines
222 B
Bash
#!/bin/bash
|
|
source ./install.sh
|
|
pushd exo/networking/grpc
|
|
python3 -m grpc_tools.protoc -I. --python_out=. --grpc_python_out=. node_service.proto
|
|
sed -i "s/import\ node_service_pb2/from . &/" node_service_pb2_grpc.py
|
|
popd
|
|
|