mirror of https://github.com/linkerd/linkerd2.git
bin/protoc-go.sh: Fix shellcheck error (#4420)
Signed-off-by: Joakim Roubert <joakimr@axis.com>
This commit is contained in:
parent
4d0d9a55f4
commit
3ef358bb2f
|
@ -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 \
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue