devtools: don't push if signing fails in github-merge

If a problem happens with gpg, exit prematurely so that it doesn't push
the branch upstream.
This commit is contained in:
Wladimir J. van der Laan 2015-09-18 06:03:17 +02:00
parent 8bc1b3a1f3
commit 3802ae7267

View file

@ -161,7 +161,11 @@ if [[ "d$REPLY" =~ ^d[Ss]$ ]]; then
cleanup
exit 1
else
git commit -q --gpg-sign --amend --no-edit
if ! git commit -q --gpg-sign --amend --no-edit; then
echo "Error signing, exiting."
cleanup
exit 1
fi
fi
else
echo "Not signing off on merge, exiting."