scripts/vim-patch.sh: do not git-reset on push failure (#6878)

This was added from the beginning to submit_pr in 775a16b0b, but I
cannot see why that is useful - in contrast, it will mess with the local
branch in case "origin" cannot be pushed to (i.e. when it points to
neovim/neovim itself).
This commit is contained in:
Daniel Hahler 2017-06-11 16:25:13 +02:00 committed by Justin M. Keyes
parent 9f534f338a
commit 6eb2bcd1a0

View File

@ -280,7 +280,7 @@ submit_pr() {
echo "Pushing to 'origin/${checked_out_branch}'."
output="$(git push origin "${checked_out_branch}" 2>&1)" &&
echo "${output}" ||
(echo "${output}"; git reset --soft HEAD^1; false)
(echo "${output}"; false)
echo
fi