Don't check errors on push for now, it writes to stderr even on success

This commit is contained in:
Alexander van Gessel 2011-12-04 18:24:35 +01:00
parent 68acf4157d
commit 0c4a4c6720

View file

@ -94,7 +94,8 @@ class Addon(object):
tmpfile.close()
self._execute(["git", "commit", "-F", tmpname], check_error=True)
os.remove(tmpname)
self._execute(["git", "push", "-u", "origin", "master"], check_error=True)
# Apparently, push writes to stderr on success
self._execute(["git", "push", "-u", "origin", "master"], check_error=False)
# Internal functions