fix: don't lint in the default target as it may fail on windows

This commit is contained in:
CJ van den Berg 2024-06-08 16:52:48 +02:00
parent de25501053
commit 01b78c88bd

View file

@ -284,5 +284,5 @@ pub fn build(b: *std.Build) void {
});
lints_step.dependOn(&lints.step);
b.default_step.dependOn(lints_step);
// b.default_step.dependOn(lints_step);
}