38 lines
1.2 KiB
TypeScript
38 lines
1.2 KiB
TypeScript
|
/**
|
||
|
* @file Program entry point.
|
||
|
* @author Foster Hangdaan <foster@hangdaan.email>
|
||
|
* @copyright 2024 Foster Hangdaan
|
||
|
* @license AGPL-3.0-or-later
|
||
|
*
|
||
|
* Vimm DL - Automated game downloader for https://vimm.net/vault.
|
||
|
* Copyright (C) 2024 Foster Hangdaan
|
||
|
*
|
||
|
* This program is free software: you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU Affero General Public License as
|
||
|
* published by the Free Software Foundation, either version 3 of the
|
||
|
* License, or (at your option) any later version.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU Affero General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU Affero General Public License
|
||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||
|
*/
|
||
|
|
||
|
import { ValidationError } from "cliffy/command/mod.ts";
|
||
|
import command from "/src/command.ts";
|
||
|
|
||
|
try {
|
||
|
await command.parse(Deno.args);
|
||
|
} catch (error) {
|
||
|
if (error instanceof ValidationError) {
|
||
|
error.cmd?.showHelp();
|
||
|
Deno.exit(error.exitCode);
|
||
|
} else {
|
||
|
console.error("%s", error);
|
||
|
Deno.exit(1);
|
||
|
}
|
||
|
}
|