| author | |
| committer | |
| log | faf619099ec93b48c4c50e963253533c2191b789 |
| tree | 477f45fea677a8c184ea7979ecdb8b72dcaed148 |
| parent | 5a5394b6c164d9a40fc3d5dce44ee58cb76f2397 |
2 files changed, 2 insertions(+), 2 deletions(-)
deps.zig+1-1| ... | ... | @@ -39,7 +39,7 @@ pub const Package = struct { |
| 39 | 39 | system_libs: []const string = &.{}, |
| 40 | 40 | }; |
| 41 | 41 | |
| 42 | pub const dirs = struct { | |
| 42 | const dirs = struct { | |
| 43 | 43 | pub const _89ujp8gq842x = cache ++ "/../.."; |
| 44 | 44 | pub const _8mdbh0zuneb0 = cache ++ "/v/git/github.com/yaml/libyaml/tag-0.2.5"; |
| 45 | 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 | 77 | \\ |
| 78 | 78 | }); |
| 79 | 79 | |
| 80 | try w.writeAll("pub const dirs = struct {\n"); | |
| 80 | try w.writeAll("const dirs = struct {\n"); | |
| 81 | 81 | try print_dirs(w, list.items); |
| 82 | 82 | try w.writeAll("};\n\n"); |
| 83 | 83 |