Make run_code_generation fail if git cl format fails.

The lack of error code was hiding errors in the Skia auto-roller.

Bug: skia:9812
Change-Id: Ib43e5eb1749161e9fa0186bfd4a293dadaf82f8a
Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2024178
Reviewed-by: Jamie Madill <jmadill@chromium.org>
Commit-Queue: Jamie Madill <jmadill@chromium.org>
This commit is contained in:
Jamie Madill 2020-01-28 08:27:16 -05:00 коммит произвёл Commit Bot
Родитель 77f99a5a53
Коммит f144b77bc8
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -232,7 +232,8 @@ def main():
# line length limits. Work around this by calling git cl format with --full.
args += ['cl', 'format', '--full']
print('Calling git cl format')
subprocess.call(args)
if subprocess.call(args) != 0:
sys.exit(1)
# Update the output hashes again since they can be formatted.
for name, script in sorted(generators.iteritems()):