release.sh: re-add warning about debian/changelog changes

As long as we push auto builder packages from our CI, we need to update the
version number via the changelog.
This commit is contained in:
Michael Stapelberg 2022-09-21 21:42:40 +02:00 committed by Michael Stapelberg
parent 3e434ba0ce
commit 28671a622b

View File

@ -20,6 +20,12 @@ then
exit 1
fi
if git diff-files --quiet --exit-code debian/changelog
then
echo "Expected debian/changelog to be changed (containing the changelog for ${RELEASE_VERSION})."
exit 1
fi
if [ ! -e "RELEASE-NOTES-${RELEASE_VERSION}" ]
then
echo "RELEASE-NOTES-${RELEASE_VERSION} not found. Here is the output from the generator:"