#!/usr/bin/env bash
set -o errexit
set -o nounset
set -o pipefail
DIR="$(dirname "${BASH_SOURCE[0]}")"
ROOT_DIR="$(realpath "${DIR}/..")"
failed=()
if [[ "${UPDATE_CODEGEN:-true}" == "true" ]]; then
echo "[*] Update codegen..."
"${ROOT_DIR}"/hack/update-codegen.sh || failed+=(codegen)
fi
if [[ "${UPDATE_CONTROLLERGEN:-true}" == "true" ]]; then
echo "[*] Update controllergen..."
"${ROOT_DIR}"/hack/update-controllergen.sh || failed+=(controllergen)
fi
if [[ "${UPDATE_GO_FORMAT:-true}" == "true" ]]; then
echo "[*] Update go format..."
"${ROOT_DIR}"/hack/update-go-format.sh || failed+=(go-format)
fi
if [[ "${UPDATE_GO_MOD:-true}" == "true" ]]; then
echo "[*] Update go mod..."
"${ROOT_DIR}"/hack/update-go-mod.sh || failed+=(go-mod)
fi
if [[ "${UPDATE_GO_LINT:-true}" == "true" ]]; then
echo "[*] Update go lint..."
"${ROOT_DIR}"/hack/update-go-lint.sh || failed+=(go-lint)
fi
if [[ "${UPDATE_ENDS_NEWLINE:-true}" == "true" ]]; then
echo "[*] Update ends newline..."
"${ROOT_DIR}"/hack/update-ends-newline.sh || failed+=(ends-newline)
fi
if [[ "${UPDATE_CMD_DOCS:-true}" == "true" ]]; then
echo "[*] Update cmd docs..."
"${ROOT_DIR}"/hack/update-cmd-docs.sh || failed+=(cmd-docs)
fi
if [[ "${UPDATE_API_DOCS:-true}" == "true" ]]; then
echo "[*] Update api docs..."
"${ROOT_DIR}"/hack/update-api-docs.sh || failed+=(api-docs)
fi
if [[ "${UPDATE_SHELL_FORMAT:-true}" == "true" ]]; then
echo "[*] Update shell format..."
"${ROOT_DIR}"/hack/update-shell-format.sh || failed+=(shell-format)
fi
if [[ "${UPDATE_YAML_FORMAT:-true}" == "true" ]]; then
echo "[*] Update yaml format..."
"${ROOT_DIR}"/hack/update-yaml-format.sh || failed+=(yaml-format)
fi
if [[ "${UPDATE_SPELLING:-true}" == "true" ]]; then
echo "[*] Update spelling..."
"${ROOT_DIR}"/hack/update-spelling.sh || failed+=(spelling)
fi
if [[ "${UPDATE_STAGES:-true}" == "true" ]]; then
echo "[*] Update stages..."
"${ROOT_DIR}"/hack/update-stages.sh || failed+=(stages)
fi
if [[ "${UPDATE_HELM_CHARTS:-true}" == "true" ]]; then
echo "[*] Update helm charts..."
"${ROOT_DIR}"/hack/update-helm-charts.sh || failed+=(helm-charts)
fi
if [[ "${UPDATE_DRY_RUN_TESTDATA:-true}" == "true" ]]; then
echo "[*] Update testdata..."
"${ROOT_DIR}"/hack/update-testdata.sh || failed+=(testdata)
fi
if [[ "${#failed[@]}" != 0 ]]; then
echo "Update failed for: ${failed[*]}"
exit 1
fi