aboutsummaryrefslogtreecommitdiff
path: root/src/cli.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli.zig')
-rw-r--r--src/cli.zig4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/cli.zig b/src/cli.zig
index 44c6159ca..5e88dc3e9 100644
--- a/src/cli.zig
+++ b/src/cli.zig
@@ -664,7 +664,9 @@ pub const Command = struct {
return;
},
.InstallCommand => {
- try InstallCommand.exec(allocator);
+ const ctx = try Command.Context.create(allocator, log, .BuildCommand);
+
+ try InstallCommand.exec(ctx);
return;
},
.GetCompletionsCommand => {