blob: 76eb0de5aac6d73b89f68334de78ff3807ca5d21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/usr/bin/env bash
if grep -q -F "is_a_released_version = False" ../config/coq_config.py; then
echo "This is not a released version: nothing to test."
exit 0
fi
for d in ../doc/changelog/*; do
if [ -d "$d" ]; then
files=("$d"/*.rst)
if [ "${#files[@]}" != 1 ]; then
echo "Fatal: unreleased changelog entries remain in ${d#../}/"
echo "Include them in doc/sphinx/changes.rst and remove them from doc/changelog/"
exit 1
fi
fi
done
|