diff options
Diffstat (limited to 'src/eval.zig')
-rw-r--r-- | src/eval.zig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/eval.zig b/src/eval.zig index 17486aa..bd5804d 100644 --- a/src/eval.zig +++ b/src/eval.zig @@ -106,6 +106,9 @@ pub fn executeCommandWithOutput(command: Command, allocator: Allocator, output_c .PathSet => |path_set| { return path_set.eval(ctx); }, + .Help => |help| { + return help.eval(ctx); + }, else => { const error_msg = try std.fmt.allocPrint(ctx.allocator, "Command not implemented: {any}\n", .{builtin_cmd}); defer ctx.allocator.free(error_msg); |