From 2ae1ac885ba18321d327372790281f5873856a50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Motiejus=20Jak=C5=A1tys?= Date: Mon, 30 Dec 2024 01:33:26 +0200 Subject: [PATCH] fix filename --- build.zig | 2 +- zig1.c => zig0.c | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename zig1.c => zig0.c (100%) diff --git a/build.zig b/build.zig index edc63cf..20d2ea8 100644 --- a/build.zig +++ b/build.zig @@ -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); diff --git a/zig1.c b/zig0.c similarity index 100% rename from zig1.c rename to zig0.c