mirror of
https://github.com/containers/podman.git
synced 2025-11-30 18:18:18 +08:00
Add a bare minimum GRPC service to the podman system service socket. Signed-off-by: Nalin Dahyabhai <nalin@redhat.com>
13 lines
261 B
Bash
Executable File
13 lines
261 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
cd $(dirname ${BASH_SOURCE[0]})
|
|
TOP=../../..
|
|
PATH=${TOP}/test/tools/build:${PATH}
|
|
set -x
|
|
for proto in *.proto ; do
|
|
protoc \
|
|
--go_opt=paths=source_relative --go_out . \
|
|
--go-grpc_opt=paths=source_relative --go-grpc_out . \
|
|
${proto}
|
|
done
|