Run the patch updater script.
(args='', output_file=None)
| 431 | |
| 432 | |
| 433 | def run_patch_updater(args='', output_file=None): |
| 434 | """ Run the patch updater script. """ |
| 435 | tool = os.path.join(cef_src_dir, 'tools', 'patch_updater.py') |
| 436 | if len(args) > 0: |
| 437 | args = ' ' + args |
| 438 | run('%s %s%s' % (python_exe, tool, args), cef_src_dir, depot_tools_dir, |
| 439 | output_file) |
| 440 | |
| 441 | |
| 442 | def onerror(func, path, exc_info): |