mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-12-11 03:34:21 -05:00
Fix check-newsfragment script (#4750)
* Fix check-newsfragment script I previously broke this so that it always succeeded... * more fixes * fix newsfiles
This commit is contained in:
parent
4bc7483518
commit
57426ec6a3
@ -1 +1 @@
|
|||||||
Better checks on newsfragments
|
Better checks on newsfragments.
|
||||||
|
1
changelog.d/4750.misc
Normal file
1
changelog.d/4750.misc
Normal file
@ -0,0 +1 @@
|
|||||||
|
Better checks on newsfragments.
|
@ -6,7 +6,8 @@
|
|||||||
set -e
|
set -e
|
||||||
|
|
||||||
# make sure that origin/develop is up to date
|
# make sure that origin/develop is up to date
|
||||||
git fetch origin develop
|
git remote set-branches --add origin develop
|
||||||
|
git fetch --depth=1 origin develop
|
||||||
|
|
||||||
UPSTREAM=origin/develop
|
UPSTREAM=origin/develop
|
||||||
|
|
||||||
@ -25,11 +26,15 @@ if git diff --name-only $UPSTREAM... | grep -qv '^develop/'; then
|
|||||||
tox -e check-newsfragment
|
tox -e check-newsfragment
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
echo
|
||||||
|
echo "--------------------------"
|
||||||
|
echo
|
||||||
|
|
||||||
# check that any new newsfiles on this branch end with a full stop.
|
# check that any new newsfiles on this branch end with a full stop.
|
||||||
for f in git diff --name-only $UPSTREAM... -- changelog.d; do
|
for f in `git diff --name-only $UPSTREAM... -- changelog.d`; do
|
||||||
lastchar=`tr -d '\n' < $f | tail -c 1`
|
lastchar=`tr -d '\n' < $f | tail -c 1`
|
||||||
if [ $lastchar != '.' ]; then
|
if [ $lastchar != '.' ]; then
|
||||||
echo "Newsfragment $f does not end with a '.'" >&2
|
echo -e "\e[31mERROR: newsfragment $f does not end with a '.'\e[39m" >&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
Loading…
Reference in New Issue
Block a user