mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 02:48:50 +00:00
10 lines
294 B
Zig
10 lines
294 B
Zig
const Command = @import("../cli.zig").Command;
|
|
const PackageManager = @import("../install/install.zig").PackageManager;
|
|
const bun = @import("root").bun;
|
|
|
|
pub const PatchCommitCommand = struct {
|
|
pub fn exec(ctx: Command.Context) !void {
|
|
try PackageManager.patchCommit(ctx);
|
|
}
|
|
};
|