Don't check errors on push for now, it writes to stderr even on success
This commit is contained in:
parent
68acf4157d
commit
0c4a4c6720
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue