mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
10 lines
282 B
Zig
10 lines
282 B
Zig
const bun = @import("root").bun;
|
|
const Command = @import("../cli.zig").Command;
|
|
const PackageManager = @import("../install/install.zig").PackageManager;
|
|
|
|
pub const PatchCommand = struct {
|
|
pub fn exec(ctx: Command.Context) !void {
|
|
try PackageManager.patch(ctx);
|
|
}
|
|
};
|