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