aboutsummaryrefslogtreecommitdiff
path: root/src/cli/dev_command.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli/dev_command.zig')
-rw-r--r--src/cli/dev_command.zig3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cli/dev_command.zig b/src/cli/dev_command.zig
index 6587309b6..91dee1bbc 100644
--- a/src/cli/dev_command.zig
+++ b/src/cli/dev_command.zig
@@ -3,6 +3,7 @@ const Command = @import("../cli.zig").Command;
pub const DevCommand = struct {
pub fn exec(ctx: Command.Context) !void {
- try Server.start(ctx.allocator, ctx.args);
+ try Server.start(ctx.allocator, ctx.args, @TypeOf(ctx.debug), ctx.debug);
+
}
};