mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-02-09 08:34:25 +01:00
Update to use ttrpc_out instead of grpc_out Fixes: #8519 Signed-off-by: stevenhorsman <steven@uk.ibm.com>
15 lines
341 B
Bash
Executable File
15 lines
341 B
Bash
Executable File
#!/bin/bash
|
|
# (C) Copyright IBM Corp. 2022, 2023
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
set -o errexit -o pipefail -o nounset
|
|
|
|
HYPERVISOR_PATH="protocols/hypervisor"
|
|
|
|
protoc \
|
|
-I=$GOPATH/src \
|
|
--proto_path=$HYPERVISOR_PATH \
|
|
--go_out=$HYPERVISOR_PATH \
|
|
--go-ttrpc_out=$HYPERVISOR_PATH \
|
|
$HYPERVISOR_PATH/hypervisor.proto
|