From b34f0da49959cd09b2f4fdc793e8f7dec357eadc Mon Sep 17 00:00:00 2001 From: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> Date: Sun, 9 Apr 2023 03:17:57 -0700 Subject: [PATCH] Fixes #2599 --- src/cli.zig | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/cli.zig b/src/cli.zig index 2e4f900b54..f9c3f403ff 100644 --- a/src/cli.zig +++ b/src/cli.zig @@ -1062,7 +1062,6 @@ pub const Command = struct { // _ = CreateCommand; _ = CreateListExamplesCommand; // _ = DevCommand; - _ = DiscordCommand; // _ = InstallCommand; // _ = LinkCommand; // _ = UnlinkCommand; @@ -1079,9 +1078,9 @@ pub const Command = struct { const tag = which(); switch (tag) { - // .DiscordCommand => return try DiscordCommand.exec(allocator), - // .HelpCommand => return try HelpCommand.exec(allocator), - // .InitCommand => return try InitCommand.exec(allocator, std.os.argv), + .DiscordCommand => return try DiscordCommand.exec(allocator), + .HelpCommand => return try HelpCommand.exec(allocator), + .InitCommand => return try InitCommand.exec(allocator, std.os.argv), else => {}, }