authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-07-10 18:13:53 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-07-10 18:13:53 -07:00
logfaf619099ec93b48c4c50e963253533c2191b789
tree477f45fea677a8c184ea7979ecdb8b72dcaed148
parent5a5394b6c164d9a40fc3d5dce44ee58cb76f2397

deps.zig- `.dirs` no longer needs to pub


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

deps.zig+1-1
......@@ -39,7 +39,7 @@ pub const Package = struct {
3939 system_libs: []const string = &.{},
4040};
4141
42pub const dirs = struct {
42const dirs = struct {
4343 pub const _89ujp8gq842x = cache ++ "/../..";
4444 pub const _8mdbh0zuneb0 = cache ++ "/v/git/github.com/yaml/libyaml/tag-0.2.5";
4545 pub const _s84v9o48ucb0 = cache ++ "/git/github.com/nektro/zig-ansi";
src/cmd/fetch.zig+1-1
......@@ -77,7 +77,7 @@ pub fn create_depszig(dir: []const u8, top_module: u.Module, list: *std.ArrayLis
7777 \\
7878 });
7979
80 try w.writeAll("pub const dirs = struct {\n");
80 try w.writeAll("const dirs = struct {\n");
8181 try print_dirs(w, list.items);
8282 try w.writeAll("};\n\n");
8383