aboutsummaryrefslogtreecommitdiff
path: root/lib/std/Build/CheckFileStep.zig
AgeCommit message (Collapse)Author
2023-01-31std.Build: avoid use of catch unreachableAndrew Kelley
Usage of `catch unreachable` in build scripts is completely harmless because build scripts are always run in Debug mode, however, it sets a poor example for beginners to learn from.
2023-01-31combine std.build and std.build.Builder into std.BuildAndrew Kelley
I've been wanting to do this for along time.