blob: bc2bfa76c83c0fca7646cfb2d2fb350e9ef6a5c4 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
const Command = @import("../cli.zig").Command;
const PackageManager = @import("../install/install.zig").PackageManager;
pub const UpdateCommand = struct {
pub fn exec(ctx: Command.Context) !void {
try PackageManager.update(ctx);
}
};
|