authorgravatar for dannypsnl@gmail.comLîm Tsú-thuàn <dannypsnl@gmail.com> 2021-12-31 09:44:38 +08:00
committergravatar for dannypsnl@gmail.comLîm Tsú-thuàn <dannypsnl@gmail.com> 2021-12-31 09:44:38 +08:00
logd9f245882f465e7cc7239ec251745578e464622b
tree5f3d4318700909e65e4babadc31b5babad8335f8
parent1c93f00212b37bf480bc7f30d7ac4576a74d8303

let `dirs` in `deps.zig` be public


1 files changed, 1 insertions(+), 1 deletions(-)

src/cmd/fetch.zig+1-1
...@@ -92,7 +92,7 @@ pub fn create_depszig(cachepath: string, dir: std.fs.Dir, top_module: zigmod.Mod...@@ -92,7 +92,7 @@ pub fn create_depszig(cachepath: string, dir: std.fs.Dir, top_module: zigmod.Mod
92 \\92 \\
93 );93 );
9494
95 try w.writeAll("const dirs = struct {\n");95 try w.writeAll("pub const dirs = struct {\n");
96 try print_dirs(w, list.items);96 try print_dirs(w, list.items);
97 try w.writeAll("};\n\n");97 try w.writeAll("};\n\n");
9898