From 34b89a8e3498497e84b27aab4f05aae8b9fb7a83 Mon Sep 17 00:00:00 2001 From: Astronand Date: Wed, 25 Feb 2026 08:04:53 -0500 Subject: [PATCH] fixed build script --- build.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/build.py b/build.py index 83af105..50e91f6 100644 --- a/build.py +++ b/build.py @@ -90,11 +90,6 @@ def install_bootloader(arch: str, release: bool): boot_dir = BUILD_ROOT / "$" / ARCH_BOOT_DIR[arch] eeprom = boot_dir / "eeprom" - for src in (boot_lua, eeprom): - if not src.exists(): - print(f" ! Bootloader file not found: {src}", file=sys.stderr) - sys.exit(1) - eeprom_dst_name = "startup.lua" if release else "eeprom" print(f" Installing: eeprom -> Build/{eeprom_dst_name}") shutil.copy2(eeprom, BUILD_ROOT / eeprom_dst_name)