runtime: Fix shellcheck issues in update-generated-runtime-proto.sh

Fix shellcheck warnings and notes identified by running
shellcheck --severity=style.

Signed-off-by: Fabiano Fidêncio <ffidencio@nvidia.com>
This commit is contained in:
Fabiano Fidêncio
2026-04-21 12:32:07 +02:00
parent 71e5e67b07
commit 4c490579d5

View File

@@ -7,9 +7,10 @@
CACHE_PATH="protocols/cache"
# shellcheck disable=SC2154
protoc \
-I=$GOPATH/src \
--proto_path=$CACHE_PATH \
--go_out=$CACHE_PATH \
--go-grpc_out=$CACHE_PATH \
$CACHE_PATH/cache.proto
-I="${GOPATH}/src" \
--proto_path="${CACHE_PATH}" \
--go_out="${CACHE_PATH}" \
--go-grpc_out="${CACHE_PATH}" \
"${CACHE_PATH}/cache.proto"