This commit is contained in:
Jarred Sumner
2024-06-19 00:50:05 -07:00
parent 43a5530f76
commit 6df1bd5ed8
3 changed files with 0 additions and 12 deletions

View File

@@ -4,11 +4,6 @@ const PackageManager = @import("../install/install.zig").PackageManager;
pub const PatchCommand = struct {
pub fn exec(ctx: Command.Context) !void {
if (!bun.FeatureFlags.is_patch_cmd_enabled) {
bun.Output.prettyErrorln("bun patch is not available in this version of bun. Stay tuned.", .{});
bun.Global.exit(1);
}
try PackageManager.patch(ctx);
}
};