Give an error from build/tools/post-release.sh if it didn't work

The script gave a misleading success message even if it didn't find
anything to update.
This commit is contained in:
Vadim Zeitlin 2018-12-09 16:51:29 +01:00
parent 33cb18f5e1
commit 2b612603d3

View File

@ -8,6 +8,11 @@ topdir=`dirname $0`/../..
# Build the file list for sha1sums, from `docs/release.md`
declare -a files=(`sed -n '/^## Download Verification/,/^## Binaries/p' $topdir/docs/release.md | sed -n -E 's/^\s*0{40}\s{2}(wx.*)/\1/p'`)
if [ -z "$files" ]; then
echo "No lines with SHA-1 sums, has release.md format changed?" >&2
exit 1
fi
# Get the release version unless it's given explicitly on the command line.
if [ -z $1 ]; then
ver_string=`grep '#define wxVERSION_STRING ' $topdir/include/wx/version.h | sed 's/^.*"wxWidgets \(.*\)")/\1/'`