Skip to content

Commit 0df96b6

Browse files
committed
cmd/aq/{install,update}: use proper cachepath
1 parent a1ea508 commit 0df96b6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/cmd/aquila/install.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ pub fn execute(self_name: []const u8, args: [][]u8) !void {
6262

6363
// zigmod ci
6464
const ci = @import("../ci.zig");
65-
try ci.do(gpa, modpath, moddir);
65+
try ci.do(gpa, cachepath, moddir);
6666

6767
// zig build
6868
const argv: []const string = &.{

src/cmd/aquila/update.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ pub fn execute(self_name: []const u8, args: [][]u8) !void {
4848

4949
// zigmod ci
5050
const ci = @import("../ci.zig");
51-
try ci.do(gpa, modpath, moddir);
51+
try ci.do(gpa, cachepath, moddir);
5252

5353
// zig build
5454
const argv: []const string = &.{

0 commit comments

Comments
 (0)