don't enforce a changelog entry for releases with "test" in their name, same as with "beta"

This commit is contained in:
Gerd v. Egidy 2022-08-05 21:28:05 +02:00
parent 5e92f0be16
commit 6e524a040c

View file

@ -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