forked from openkylin/platform_build
Merge "Don't check the stderr output from bsdiff/imgdiff" am: 07a4299182
am: 759dcbd1ed
Change-Id: If17dcdb8daaf74325bcbc9ae2ef0ba1932a30e94
This commit is contained in:
commit
6b3337db4a
|
@ -1385,7 +1385,7 @@ class Difference(object):
|
||||||
p.kill()
|
p.kill()
|
||||||
th.join()
|
th.join()
|
||||||
|
|
||||||
if err or p.returncode != 0:
|
if p.returncode != 0:
|
||||||
print("WARNING: failure running %s:\n%s\n" % (
|
print("WARNING: failure running %s:\n%s\n" % (
|
||||||
diff_program, "".join(err)))
|
diff_program, "".join(err)))
|
||||||
self.patch = None
|
self.patch = None
|
||||||
|
|
Loading…
Reference in New Issue