| Server IP : 18.193.92.211 / Your IP : 216.73.216.128 Web Server : Apache/2.4.63 (Ubuntu) System : Linux ip-10-0-0-90 5.15.0-1084-aws #91~20.04.1-Ubuntu SMP Fri May 2 06:59:36 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 8.2.28 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /bin/ |
Upload File : |
#!/usr/bin/env node
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const commander = require("commander");
const commands_1 = require("../commands");
const local_binaries_1 = require("../lib/utils/local-binaries");
const bootstrap = () => {
const program = commander;
program
.version(require('../package.json').version, '-v, --version', 'Output the current version.')
.usage('<command> [options]')
.helpOption('-h, --help', 'Output usage information.');
if (local_binaries_1.localBinExists()) {
const localCommandLoader = local_binaries_1.loadLocalBinCommandLoader();
localCommandLoader.load(program);
}
else {
commands_1.CommandLoader.load(program);
}
commander.parse(process.argv);
if (!process.argv.slice(2).length) {
program.outputHelp();
}
};
bootstrap();