authorgravatar for hello@nektro.netMeghan <hello@nektro.net> 2020-11-16 18:48:35 -08:00
committergravatar for hello@nektro.netMeghan <hello@nektro.net> 2020-11-16 18:48:35 -08:00
logcac021f8392424fa5ef55035eadd4ed4548b9b5d
tree9b047acc62fc50add1686684ac91d6d6c5b26ce9
parentbab6aa2485ac75b17e3026d233e4016cb542a19f

fetch: fix param in addToAll deps func


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

src/cmd_fetch.zig+1-1
...@@ -26,7 +26,7 @@ pub fn execute(args: [][]u8) !void {...@@ -26,7 +26,7 @@ pub fn execute(args: [][]u8) !void {
26 try w.print("const cache = home ++ \"/.cache/zigmod/deps\";\n", .{});26 try w.print("const cache = home ++ \"/.cache/zigmod/deps\";\n", .{});
27 try w.print("\n", .{});27 try w.print("\n", .{});
28 try w.print("{}\n", .{28 try w.print("{}\n", .{
29 \\pub fn addAllTo(exe: build.LibExeObjStep) void {29 \\pub fn addAllTo(exe: *build.LibExeObjStep) void {
30 \\ for (packages) |pkg| {30 \\ for (packages) |pkg| {
31 \\ exe.addPackage(pkg);31 \\ exe.addPackage(pkg);
32 \\ }32 \\ }