diff options
author | 2023-04-09 03:17:57 -0700 | |
---|---|---|
committer | 2023-04-10 11:58:19 -0700 | |
commit | 57d0f2da7e532dd29c60575ef0739558a5b4aa93 (patch) | |
tree | 5fbfb3cbaf3f0927e21f4d6a850b471cbec1b8e9 /src | |
parent | f20b7d5686007a50ff76e40162fd3dbc8e482b18 (diff) | |
download | bun-57d0f2da7e532dd29c60575ef0739558a5b4aa93.tar.gz bun-57d0f2da7e532dd29c60575ef0739558a5b4aa93.tar.zst bun-57d0f2da7e532dd29c60575ef0739558a5b4aa93.zip |
Fixes #2599
Diffstat (limited to 'src')
-rw-r--r-- | src/cli.zig | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/cli.zig b/src/cli.zig index 2e4f900b5..f9c3f403f 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 => {}, } |