We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbd97af commit 09ab95dCopy full SHA for 09ab95d
hack/build-go.sh
@@ -3,7 +3,7 @@
3
set -eu
4
5
REPO=github.com/openshift/cluster-version-operator
6
-GOFLAGS=${GOFLAGS:-}
+GOFLAGS=${GOFLAGS:--mod=vendor}
7
GLDFLAGS=${GLDFLAGS:-}
8
9
eval $(go env | grep -e "GOHOSTOS" -e "GOHOSTARCH")
hack/update-vendor.sh
@@ -8,6 +8,7 @@ set -euo pipefail
cd "$(git rev-parse --show-cdup)"
10
# Run dep.
11
-dep ensure
+go mod vendor
12
+go mod verify
13
14
(cd hack && ./update-codegen.sh)
0 commit comments