fix filename

This commit is contained in:
2024-12-30 01:33:26 +02:00
parent b8a52d3f39
commit 2ae1ac885b
2 changed files with 1 additions and 1 deletions

View File

@@ -79,7 +79,7 @@ pub fn build(b: *std.Build) !void {
const lint_step = b.step("lint", "Run linters");
const clang_format = b.addSystemCommand(&.{"clang-format"});
clang_format.addArgs(&.{ "--verbose", "-Werror", "-i" });
clang_format.addArgs(&.{ "-Werror", "-i" });
for (all_c_files ++ headers) |f| clang_format.addFileArg(b.path(f));
lint_step.dependOn(&clang_format.step);

View File