diff options
author | 2023-04-09 03:17:57 -0700 | |
---|---|---|
committer | 2023-04-09 03:18:26 -0700 | |
commit | b34f0da49959cd09b2f4fdc793e8f7dec357eadc (patch) | |
tree | 7abd50bc363d4c97779f891f09ad317739d18df3 /src | |
parent | eb18101d84760eafd804e92d7a8f2126c0f5fae9 (diff) | |
download | bun-b34f0da49959cd09b2f4fdc793e8f7dec357eadc.tar.gz bun-b34f0da49959cd09b2f4fdc793e8f7dec357eadc.tar.zst bun-b34f0da49959cd09b2f4fdc793e8f7dec357eadc.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 => {}, } |