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

Function run_automate_prebuilt_cef

tools/build_distrib.py:412–421  ·  view source on GitHub ↗
(python)

Source from the content-addressed store, hash-verified

410
411
412def run_automate_prebuilt_cef(python):
413 print("[build_distrib.py] Run automate.py --prebuilt-cef for {arch}"
414 .format(arch=python["arch"]))
415 automate = os.path.join(TOOLS_DIR, "automate.py")
416 command = ("\"{python}\" {automate} --prebuilt-cef"
417 .format(python=python["executable"], automate=automate))
418 code = subprocess.call(command, shell=True)
419 if code != 0:
420 print("[build_distrib.py] ERROR while running automate.py")
421 sys.exit(1)
422
423
424def pack_prebuilt_cef(arch):

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected