mirror of
https://github.com/unclechu/gRPC-haskell.git
synced 2024-11-05 10:49:42 +01:00
11 lines
223 B
Bash
11 lines
223 B
Bash
|
#!/bin/bash -eu
|
||
|
|
||
|
pyTmpDir=$1
|
||
|
|
||
|
python \
|
||
|
-m grpc.tools.protoc \
|
||
|
-I tests \
|
||
|
--python_out=$pyTmpDir \
|
||
|
--grpc_python_out=$pyTmpDir \
|
||
|
tests/simple.proto
|