Skip to content

Commit 6b635d3

Browse files
script/build-with-container: fix incorrect build invocation for tests
The `tests` build target was set to build the "normal" target but it needs to build the tests. Signed-off-by: John Mulligan <[email protected]>
1 parent f1a8960 commit 6b635d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/script/build-with-container.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -572,7 +572,7 @@ def bc_run_tests(ctx):
572572
[
573573
"bash",
574574
"-c",
575-
f"cd {ctx.cli.homedir} && source ./run-make-check.sh && build && run",
575+
f"cd {ctx.cli.homedir} && source ./run-make-check.sh && build tests && run",
576576
],
577577
)
578578
with ctx.user_command():

0 commit comments

Comments
 (0)