mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-21 17:07:16 +00:00
12 lines
584 B
Bash
Executable file
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
|