From 6e524a040c0035a254d725b83f58723e17d7b43c Mon Sep 17 00:00:00 2001 From: "Gerd v. Egidy" Date: Fri, 5 Aug 2022 21:28:05 +0200 Subject: [PATCH] don't enforce a changelog entry for releases with "test" in their name, same as with "beta" --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 5b3ab73..9771ab4 100755 --- a/build.sh +++ b/build.sh @@ -159,8 +159,8 @@ make_documentation() { exit 1 fi - # is the documentation up to date? ignore for beta versions - if ! echo "${iso_version}" | grep -i -q "beta" && \ + # is the documentation up to date? ignore for beta and test versions + if ! echo "${iso_version}" | grep -i -q "beta\|test" && \ ! grep -q "${iso_version}" website/content/Changes-x86/_index.md; then echo "ERROR: current version not in changelog. Did you update the website submodule?" exit 1