We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b3b3ea6 + 7a57e50 commit 60bc128Copy full SHA for 60bc128
1 file changed
script/setup/install-dev-tools
@@ -20,7 +20,16 @@
20
#
21
set -eu -o pipefail
22
23
-go get -u github.com/stevvooe/protobuild
+# install the `protobuild` binary in $GOPATH/bin; requires module-aware install
24
+# to pin dependencies
25
+GO111MODULE=on go get github.com/stevvooe/protobuild
26
+
27
+# the following packages need to exist in $GOPATH so we can't use
28
+# go modules-aware mode of `go get` for these includes used during
29
+# proto building
30
+GO111MODULE=off go get -d github.com/gogo/googleapis || true
31
+GO111MODULE=off go get -d github.com/gogo/protobuf || true
32
33
go get -u github.com/golangci/golangci-lint/cmd/golangci-lint
34
go get -u github.com/cpuguy83/go-md2man
35
0 commit comments