authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2022-09-18 11:48:18 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2022-09-18 11:48:18 -07:00
logfb1a2c10d11ff10d715312ff961e3e7d9ce1d563
tree3ffa75f3455dbdece2a2988ea25590d4a063184f
parent9c43bd4e93af32d6c59693754d1954186c5e941a

cmd/generate: add a few TODOs


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

src/cmd/generate.zig+2
...@@ -71,6 +71,8 @@ pub fn create_depszig(alloc: std.mem.Allocator, cachepath: string, dir: std.fs.D...@@ -71,6 +71,8 @@ pub fn create_depszig(alloc: std.mem.Allocator, cachepath: string, dir: std.fs.D
71 \\ var checkoutstep = std.build.RunStep.create(b, "checkout");71 \\ var checkoutstep = std.build.RunStep.create(b, "checkout");
72 \\ checkoutstep.addArgs(&.{ "git", "-C", repopath, "checkout", "-q", commit });72 \\ checkoutstep.addArgs(&.{ "git", "-C", repopath, "checkout", "-q", commit });
73 \\ result.step.dependOn(&checkoutstep.step);73 \\ result.step.dependOn(&checkoutstep.step);
74 // TODO rm the .git folder
75 // TODO mark folder as read-only
74 \\76 \\
75 \\ return result;77 \\ return result;
76 \\ }78 \\ }