8000
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 6a62863 commit 03cc141Copy full SHA for 03cc141
scripts/update-client.sh
@@ -47,6 +47,13 @@ if [[ -z ${GEN_ROOT:-} ]]; then
47
GEN_ROOT="${TEMP_FOLDER}/gen"
48
echo ">>> Cloning gen repo"
49
git clone --recursive https://github.com/kubernetes-client/gen.git "${GEN_ROOT}"
50
+ # pick https://github.com/kubernetes-client/gen/pull/97
51
+ cd "${GEN_ROOT}"
52
+ git remote add tomplus https://github.com/tomplus/gen.git
53
+ git fetch tomplus
54
+ # somehow I couldn't get a clean cherrypick of the commit
55
+ git checkout tomplus/feat/python-openapi-generator
56
+ cd "${SCRIPT_ROOT}"
57
else
58
echo ">>> Reusing gen repo at ${GEN_ROOT}"
59
fi
0 commit comments