commit
cda67a4c15
16
test.sh
16
test.sh
|
@ -53,11 +53,15 @@ fi
|
||||||
# Check that cobra docs are up to date
|
# Check that cobra docs are up to date
|
||||||
# This is done by generating new docs and then seeing if they are different than the committed docs
|
# This is done by generating new docs and then seeing if they are different than the committed docs
|
||||||
echo "Checking help documentation..."
|
echo "Checking help documentation..."
|
||||||
go run gen_help_text.go
|
if [[ $(git diff) ]]; then
|
||||||
files=$(git diff)
|
echo "Skipping help text check because the git state is dirty."
|
||||||
if [[ $files ]]; then
|
|
||||||
echo "Help text is out of date: $files \n Please run \"go run gen_help_text.go\"\n and make sure that those doc changes are committed"
|
|
||||||
exit 1
|
|
||||||
else
|
else
|
||||||
echo "Help text is up to date"
|
go run gen_help_text.go
|
||||||
|
files=$(git diff)
|
||||||
|
if [[ $files ]]; then
|
||||||
|
echo "Help text is out of date: $files \n Please run \"go run gen_help_text.go\"\n and make sure that those doc changes are committed"
|
||||||
|
exit 1
|
||||||
|
else
|
||||||
|
echo "Help text is up to date"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue