(arch)
| 228 | |
| 229 | |
| 230 | def delete_cefpython_binary_dir(arch): |
| 231 | cefpython_binary = get_cefpython_binary_basename( |
| 232 | postfix2=get_os_postfix2_for_arch(arch)) |
| 233 | assert cefpython_binary, cefpython_binary |
| 234 | cefpython_binary = os.path.join(BUILD_DIR, cefpython_binary) |
| 235 | if os.path.exists(cefpython_binary): |
| 236 | print("[build_distrib.py] Delete directory: {dir}/" |
| 237 | .format(dir=os.path.basename(cefpython_binary))) |
| 238 | shutil.rmtree(cefpython_binary) |
| 239 | |
| 240 | |
| 241 | def delete_cef_binaries_libraries_dir(arch): |
no test coverage detected