MCPcopy Create free account
hub / github.com/cztomczak/cefpython / delete_cefpython_binary_dir

Function delete_cefpython_binary_dir

tools/build_distrib.py:230–238  ·  view source on GitHub ↗
(arch)

Source from the content-addressed store, hash-verified

228
229
230def 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
241def delete_cef_binaries_libraries_dir(arch):

Callers 1

clean_build_directoriesFunction · 0.85

Calls 2

get_os_postfix2_for_archFunction · 0.85

Tested by

no test coverage detected