MCPcopy Create free account
hub / github.com/TactilityProject/Tactility / package_intermediate

Function package_intermediate

Tests/SdkIntegration/tactility.py:463–473  ·  view source on GitHub ↗
(platforms)

Source from the content-addressed store, hash-verified

461 shutil.copytree("assets", os.path.join(target_path, "assets"), dirs_exist_ok=True)
462
463def package_intermediate(platforms):
464 target_path = os.path.join("build", "package-intermediate")
465 if os.path.isdir(target_path):
466 shutil.rmtree(target_path)
467 os.makedirs(target_path, exist_ok=True)
468 if not package_intermediate_manifest(target_path):
469 return False
470 if not package_intermediate_binaries(target_path, platforms):
471 return False
472 package_intermediate_assets(target_path)
473 return True
474
475def package_name(platforms):
476 elf_path = find_elf_file(platforms[0])

Callers 1

package_allFunction · 0.85

Calls 4

joinMethod · 0.80

Tested by

no test coverage detected