We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f9b9960 + cfc4897 commit ec15721Copy full SHA for ec15721
hack/update-generated-clientsets.sh
@@ -18,9 +18,6 @@ if [[ ! "$clientgen" ]]; then
18
exit 1
19
fi
20
21
-os::build::os_version_vars
22
-origin_version="v${OS_GIT_MAJOR}_${OS_GIT_MINOR%+}"
23
-
24
exit 0
25
26
packages=(
hack/verify-generated-clientsets.sh
@@ -2,12 +2,11 @@
2
source "$(dirname "${BASH_SOURCE}")/lib/init.sh"
3
4
echo "===== Verifying Generated Client sets ====="
5
-output=$(VERIFY=true ${OS_ROOT}/hack/update-generated-clientsets.sh 2>&1)
6
7
-if [[ "$?" == "0" ]]; then
+if output=$(VERIFY=true ${OS_ROOT}/hack/update-generated-clientsets.sh 2>&1); then
8
echo "SUCCESS: Generated client sets up to date."
9
else
10
- echo $output
+ echo "${output}"
11
echo "FAILURE: Generated client sets out of date. Please run hack/update-generated-clientsets.sh"
12
13
0 commit comments