mirror of
https://gitee.com/rainbond/Rainbond.git
synced 2024-12-02 03:37:46 +08:00
15 lines
265 B
Bash
15 lines
265 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -o errexit
|
||
|
set -o nounset
|
||
|
set -o pipefail
|
||
|
|
||
|
|
||
|
if ! output=$(./hack/k8s/codegen/update-generated.sh --verify-only 2>&1); then
|
||
|
echo "FAILURE: verification of codegen failed:"
|
||
|
echo "${output}"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
echo "Verified generated code ==="
|