Skip to content

Commit f3120d5

Browse files
don't break vscode builds
1 parent 28cd856 commit f3120d5

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

build_and_flash_debug.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

build_and_flash_release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

build_debug.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def run(cmd: list[str]) -> None:
1111

1212
def 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"

build_release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def run(cmd: list[str]) -> None:
1111

1212
def 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"

0 commit comments

Comments
 (0)