authorgravatar for hello@nektro.netMeghan <hello@nektro.net> 2021-12-30 23:58:11 -05:00
committergravatar for noreply@github.comGitHub <noreply@github.com> 2021-12-30 23:58:11 -05:00
log73ce7d20008f3d51ad75b7995ce19c7c897c5b90
tree5f3d4318700909e65e4babadc31b5babad8335f8
parent1c93f00212b37bf480bc7f30d7ac4576a74d8303
parentd9f245882f465e7cc7239ec251745578e464622b
signaturebadge-question-mark Signed by PGP key 4AEE18F83AFDEB23

Merge pull request #46 from dannypsnl/expose-dirs

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
9292 \\
9393 );
9494
95 try w.writeAll("const dirs = struct {\n");
95 try w.writeAll("pub const dirs = struct {\n");
9696 try print_dirs(w, list.items);
9797 try w.writeAll("};\n\n");
9898