(target_path)
| 457 | return True |
| 458 | |
| 459 | def package_intermediate_assets(target_path): |
| 460 | if os.path.isdir("assets"): |
| 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") |
no test coverage detected