()
| 258 | print(f"{Colors.GREEN}✅ cargo-jvm is up to date.{Colors.RESET}") |
| 259 | return |
| 260 | |
| 261 | print(f"{Colors.CYAN}📦 Building cargo-jvm...{Colors.RESET}") |
| 262 | subprocess.run(["cargo", "build", "--release"], cwd=Config.CARGO_JVM_DIR, check=True) |
| 263 | print(f"{Colors.GREEN} cargo-jvm built successfully.{Colors.RESET}") |
| 264 | |
| 265 | def generate_config_files(): |
| 266 | """Generates config.toml and jvm-unknown-jvm.json from templates.""" |
| 267 | print(f"{Colors.CYAN}🛠️ Generating configuration files from templates...{Colors.RESET}") |
| 268 |
nothing calls this directly
no outgoing calls
no test coverage detected