mod-manager/src/commands/install_command.ts
2022-08-03 16:55:12 +01:00

19 lines
651 B
TypeScript

import {Command} from "commander";
import Subcommand from "./subcommand.js"
import ModManager from "../mod-manager.js";
import Mods from "../mods/mods.js";
export default class InstallCommand implements Subcommand {
registerCommand(program: Command): void {
program.command("install")
.description("Installs the provided mods")
.argument("<mods...>", "The mods to install")
.action((mods) => {
ModManager.execute(async () => {
for (const mod of mods) {
await Mods.install(mod);
}
})
});
}
}