authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-02-10 20:54:47 -08:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-02-10 20:54:47 -08:00
loge35939e19dfe5feff7cd655e12e01a561a813103
tree847de1b641c674621bd9e80cb69e05c06ab3bb8e
parentcfa7072684eb875647f1f1ec16d12a4222b97987

make more things public


3 files changed, 4 insertions(+), 3 deletions(-)

src/cmd_fetch.zig+1-1
......@@ -26,7 +26,7 @@ pub fn execute(args: [][]u8) !void {
2626 try w.writeAll("const std = @import(\"std\");\n");
2727 try w.writeAll("const build = std.build;\n");
2828 try w.writeAll("\n");
29 try w.print("const cache = \"{s}\";\n", .{std.zig.fmtEscapes(dir)});
29 try w.print("pub const cache = \"{s}\";\n", .{std.zig.fmtEscapes(dir)});
3030 try w.writeAll("\n");
3131 try w.print("{s}\n", .{
3232 \\pub fn addAllTo(exe: *build.LibExeObjStep) void {
src/cmd_zpm.zig+1-1
......@@ -6,7 +6,7 @@ const u = @import("./util/index.zig");
66//
77//
88
9const commands = struct {
9pub const commands = struct {
1010 const add = @import("./cmd_zpm_add.zig");
1111};
1212
src/main.zig+2-1
......@@ -1,7 +1,8 @@
11const std = @import("std");
22const builtin = @import("builtin");
33
4const u = @import("./util/index.zig");
4pub const u = @import("./util/index.zig");
5pub const common = @import("./common.zig");
56
67//
78//