bin/protoc-go.sh: Fix shellcheck error (#4420)

Signed-off-by: Joakim Roubert <joakimr@axis.com>
This commit is contained in:
Joakim Roubert 2020-05-18 22:13:41 +02:00 committed by GitHub
parent 4d0d9a55f4
commit 3ef358bb2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View File

@ -85,7 +85,6 @@ jobs:
! -name lint \
! -name _log.sh \
! -name minikube-start-hyperv.bat \
! -name protoc-go.sh \
! -name _tag.sh \
! -name test-cleanup \
! -name test-clouds \

View File

@ -3,7 +3,7 @@
set -eu
gen() {
for f in $@; do
for f in "$@"; do
bin/protoc -I proto --go_out=plugins=grpc,paths=source_relative:controller/gen "$f"
done
}