authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2022-05-29 21:33:29 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2022-05-29 21:33:29 -07:00
loga17e2a06e1c537f6dd60e31de2c521e143b8e767
treeeef334257fdbc81ae957542e0440524d4bf58312
parent449c85d8c8eb08386aaabd958d150ac77d1cf9ac

deps.zig: disable zig fmt

closes #70

2 files changed, 2 insertions(+), 0 deletions(-)

deps.zig+1
......@@ -1,3 +1,4 @@
1// zig fmt: off
12const std = @import("std");
23const builtin = @import("builtin");
34const Pkg = std.build.Pkg;
src/cmd/fetch.zig+1
......@@ -44,6 +44,7 @@ pub fn create_depszig(alloc: std.mem.Allocator, cachepath: string, dir: std.fs.D
4444 defer f.close();
4545
4646 const w = f.writer();
47 try w.writeAll("// zig fmt: off\n");
4748 try w.writeAll("const std = @import(\"std\");\n");
4849 try w.writeAll("const builtin = @import(\"builtin\");\n");
4950 try w.writeAll("const Pkg = std.build.Pkg;\n");