Skip to content

Commit

Permalink
cmd/aq/{install,update}: use proper cachepath
Browse files Browse the repository at this point in the history
  • Loading branch information
nektro committed Nov 24, 2023
1 parent a1ea508 commit 0df96b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cmd/aquila/install.zig
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ pub fn execute(self_name: []const u8, args: [][]u8) !void {

// zigmod ci
const ci = @import("../ci.zig");
try ci.do(gpa, modpath, moddir);
try ci.do(gpa, cachepath, moddir);

// zig build
const argv: []const string = &.{
Expand Down
2 changes: 1 addition & 1 deletion src/cmd/aquila/update.zig
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ pub fn execute(self_name: []const u8, args: [][]u8) !void {

// zigmod ci
const ci = @import("../ci.zig");
try ci.do(gpa, modpath, moddir);
try ci.do(gpa, cachepath, moddir);

// zig build
const argv: []const string = &.{
Expand Down

0 comments on commit 0df96b6

Please sign in to comment.