Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion hack/deepcopy-gen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ shift 1
# make sure your GOPATH env is properly set.
# it will go under $GOPATH/bin
cd "$(dirname "${0}")"
GO111MODULE=on go install k8s.io/code-generator/cmd/deepcopy-gen@latest
DEEPCOPY_VERSION="v0.29.4"
GO111MODULE=on go install k8s.io/code-generator/cmd/deepcopy-gen@${DEEPCOPY_VERSION}
)

function codegen::join() { local IFS="$1"; shift; echo "$*"; }
Expand Down