Add --fail flag to ninja check

This commit is contained in:
Aetias
2025-03-16 12:33:20 +01:00
parent 96921cb237
commit 0fd501c686
+2 -2
View File
@@ -256,13 +256,13 @@ def main():
n.rule(
name="check_modules",
command=f"{DSD} check modules --config-path $config_path"
command=f"{DSD} check modules --config-path $config_path --fail"
)
n.newline()
n.rule(
name="check_symbols",
command=f"{DSD} check symbols --config-path $config_path --elf-path $elf_path"
command=f"{DSD} check symbols --config-path $config_path --elf-path $elf_path --fail"
)
n.newline()