Skip to content

Commit

Permalink
fix: use the http url to clone codegen to allow anonymous access
Browse files Browse the repository at this point in the history
  • Loading branch information
pmuir committed Oct 30, 2018
1 parent bde0f54 commit 6eb79db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hack/update-codegen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ echo "Installing the code-generator"
VERSION='kubernetes-1.11.3'
CODE_GENERATOR='./hack/code-generator'
rm -rf ${CODE_GENERATOR} 2>/dev/null
git clone --branch ${VERSION} git@github.com:kubernetes/code-generator.git ${CODE_GENERATOR} 2>/dev/null
git clone --branch ${VERSION} https://github.com/kubernetes/code-generator.git ${CODE_GENERATOR} 2>/dev/null

export GO111MODULE=on
SCRIPT_ROOT=$(dirname ${BASH_SOURCE})/..
Expand Down

0 comments on commit 6eb79db

Please sign in to comment.