9 lines
223 B
Bash
9 lines
223 B
Bash
#!/bin/bash
|
|
|
|
if [[ "$VIRTUAL_ENV" == "" ]]
|
|
then
|
|
source ./.venv/bin/activate
|
|
fi
|
|
|
|
python -m grpc_tools.protoc -I./api/protos --python_out=./api --pyi_out=./api --grpc_python_out=./api ./api/protos/sys-mon-agent-api.proto
|