Revision d515de3ad5320eb974e50dc32a2784c4f1280186 authored by Marco Hofstetter on 06 June 2023, 14:29:01 UTC, committed by Dylan Reimerink on 08 June 2023, 14:24:35 UTC
This commit adjusts the log messages by using fields for providing
context.

Signed-off-by: Marco Hofstetter <marco.hofstetter@isovalent.com>
1 parent b7d3427
Raw File
check-helmvalues.sh
#!/usr/bin/env bash

set -o errexit
set -o nounset
set -o pipefail

script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
helm_values="${script_dir}/helm-values.rst"

if ! git diff --quiet -- "${helm_values}" ; then
    git --no-pager diff "${helm_values}"
    echo "HINT: to fix this, run 'make -C Documentation update-helm-values'"
    exit 1
fi
back to top