Work around Xcode 9 debug actool message.
Xcode 9's beta introduced a CoreUI(DEBUG) message followed by a detail message that can be ignored. Presumably this will be removed once Xcode 9 GMs. BUG=730054 Review-Url: https://codereview.chromium.org/2928623002 Cr-Original-Commit-Position: refs/heads/master@{#477535} Cr-Mirrored-From: https://chromium.googlesource.com/chromium/src Cr-Mirrored-Commit: 44098da69108f7a5525edbfb307cf73c9902de66
This commit is contained in:
Родитель
d122cd769f
Коммит
afd4f9c1c5
|
@ -62,6 +62,12 @@ def CompileXCAssets(
|
||||||
continue
|
continue
|
||||||
if line == os.path.abspath(output):
|
if line == os.path.abspath(output):
|
||||||
continue
|
continue
|
||||||
|
# crbug.com/730054 Xcode 9's beta introduced a CoreUI(DEBUG) message and
|
||||||
|
# IBMessageChannelErrorDomain message that can be ignored.
|
||||||
|
if line.startswith('CoreUI(DEBUG)'):
|
||||||
|
continue
|
||||||
|
if 'Error Domain=IBMessageChannelErrorDomain Code=4' in line:
|
||||||
|
continue
|
||||||
sys.stderr.write(stdout)
|
sys.stderr.write(stdout)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче