Home
last modified time | relevance | path

Searched refs:patch_path_abs (Results 1 – 1 of 1) sorted by relevance

/third_party/cef/tools/
Dpatch_updater.py185 patch_path_abs = os.path.abspath(os.path.join(patch_root_abs, \ variable
187 if os.path.exists(patch_path_abs):
189 backup_path_abs = patch_path_abs + backup_ext
191 msg('Creating backup of %s' % patch_path_abs)
192 copy_file(patch_path_abs, backup_path_abs)
194 msg('Skipping backup of %s' % patch_path_abs)
196 msg('Reverting changes to %s' % patch_path_abs)
197 cmd = 'git checkout -- %s' % (patch_path_abs)
201 msg('Deleting file %s' % patch_path_abs)
202 os.remove(patch_path_abs)
[all …]