extra material and simulink creation script

This commit is contained in:
Mikkeli Matlock
2026-01-25 22:49:13 +09:00
parent 1b8c788fec
commit d7a1f2fabd
9 changed files with 227 additions and 59 deletions

View File

@@ -71,6 +71,14 @@ def build(clean: bool = False) -> bool:
os.chdir(UI_DIR)
# Prepare assets (fonts, images)
prepare_script = SCRIPT_DIR / "prepare_assets.sh"
if prepare_script.exists():
print("Preparing assets...")
run(["bash", str(prepare_script)])
else:
print(f"WARNING: {prepare_script} not found")
# Initialize elinux project if needed
elinux_dir = UI_DIR / "elinux"
if not elinux_dir.exists():