(platforms)
| 461 | shutil.copytree("assets", os.path.join(target_path, "assets"), dirs_exist_ok=True) |
| 462 | |
| 463 | def 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 | |
| 475 | def package_name(platforms): |
| 476 | elf_path = find_elf_file(platforms[0]) |
no test coverage detected