Ignore progress reports from git-pull,
...which shouldn't be coming anyway as we're not a terminal
This commit is contained in:
parent
e1d6f9735c
commit
4a37c1ac3c
1 changed files with 4 additions and 0 deletions
|
@ -80,6 +80,10 @@ class Addon(object):
|
|||
elif "From" in line or "origin/master" in line:
|
||||
# Regular fetch stuff
|
||||
pass
|
||||
elif "Checking out files" in line:
|
||||
# Irregular fetch stuff
|
||||
# not being attached to a terminal *should* squelch progress reports
|
||||
pass
|
||||
else:
|
||||
real_errs.append(line)
|
||||
if real_errs:
|
||||
|
|
Loading…
Add table
Reference in a new issue