argo-cd/hack/installers/install-codegen-go-tools.sh
2019-10-11 13:42:02 -07:00

12 lines
584 B
Bash
Executable file

#!/bin/bash
set -eux -o pipefail
mkdir -p $DOWNLOADS/codegen-tools
cd $DOWNLOADS/codegen-tools
GO111MODULE=on go get github.com/gogo/protobuf/gogoproto@v1.2.1
GO111MODULE=on go get sigs.k8s.io/controller-tools/cmd/controller-gen@v0.2.0-beta.2
GO111MODULE=on go get github.com/golang/protobuf/protoc-gen-go@v1.3.1
GO111MODULE=on go get github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway@v1.9.2
GO111MODULE=on go get github.com/grpc-ecosystem/grpc-gateway/protoc-gen-swagger@v1.9.2
GO111MODULE=on go get golang.org/x/tools/cmd/goimports@v0.0.0-20190627203933-19ff4fff8850