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 {...@@ -39,7 +39,7 @@ pub const Package = struct {
39 system_libs: []const string = &.{},39 system_libs: []const string = &.{},
40};40};
4141
42pub const dirs = struct {42const dirs = struct {
43 pub const _89ujp8gq842x = cache ++ "/../..";43 pub const _89ujp8gq842x = cache ++ "/../..";
44 pub const _8mdbh0zuneb0 = cache ++ "/v/git/github.com/yaml/libyaml/tag-0.2.5";44 pub const _8mdbh0zuneb0 = cache ++ "/v/git/github.com/yaml/libyaml/tag-0.2.5";
45 pub const _s84v9o48ucb0 = cache ++ "/git/github.com/nektro/zig-ansi";45 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...@@ -77,7 +77,7 @@ pub fn create_depszig(dir: []const u8, top_module: u.Module, list: *std.ArrayLis
77 \\77 \\
78 });78 });
7979
80 try w.writeAll("pub const dirs = struct {\n");80 try w.writeAll("const dirs = struct {\n");
81 try print_dirs(w, list.items);81 try print_dirs(w, list.items);
82 try w.writeAll("};\n\n");82 try w.writeAll("};\n\n");
8383