File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ def main():
3131 import_and_run_build ()
3232
3333 # 2) Flash binary
34- bin_path = Path ("build/Debug /PowerBoard26.bin" )
34+ bin_path = Path ("build/Debug_Script /PowerBoard26.bin" )
3535 if not bin_path .exists ():
3636 sys .exit (f"Error: binary not found at { bin_path } " )
3737
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ def main():
3131 import_and_run_build ()
3232
3333 # 2) Flash binary
34- bin_path = Path ("build/Release /PowerBoard26.bin" )
34+ bin_path = Path ("build/Release_Script /PowerBoard26.bin" )
3535 if not bin_path .exists ():
3636 sys .exit (f"Error: binary not found at { bin_path } " )
3737
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ def run(cmd: list[str]) -> None:
1111
1212def main () -> None :
1313 project_dir = Path .cwd ()
14- build_dir = project_dir / "build" / "Debug "
14+ build_dir = project_dir / "build" / "Debug_Script "
1515
1616 # Telemetry flag: ON by default, OFF if "no-telemetry" is passed
1717 telemetry_flag = "-DENABLE_TELEMETRY=ON"
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ def run(cmd: list[str]) -> None:
1111
1212def main () -> None :
1313 project_dir = Path .cwd ()
14- build_dir = project_dir / "build" / "Release "
14+ build_dir = project_dir / "build" / "Release_Script "
1515
1616 # Telemetry flag: ON by default, OFF if "no-telemetry" is passed
1717 telemetry_flag = "-DENABLE_TELEMETRY=ON"
You can’t perform that action at this time.
0 commit comments