You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
627 B
25 lines
627 B
const fs = require('fs');
|
|
const path = require('path');
|
|
const { processCmds } = require('../lib/process-cmds');
|
|
|
|
|
|
const args = process.argv.slice(2);
|
|
|
|
let isLegacy = false;
|
|
if (args[0] === '--legacy') {
|
|
isLegacy = true;
|
|
args.splice(0, 1);
|
|
}
|
|
|
|
let isOutput = false;
|
|
if (args[0] === '--output') {
|
|
isOutput = true;
|
|
args.splice(0, 1);
|
|
}
|
|
|
|
const [hestiaRepo = 'https://github.com/hestiacp/hestiacp', hestiaBranch = 'main'] = args;
|
|
const cmds = processCmds({ hestiaRepo, hestiaBranch, cache: false });
|
|
|
|
if (isOutput) {
|
|
fs.writeFileSync(path.join(process.cwd(), 'hestia-cmds.json'), JSON.stringify(cmds, null, 2));
|
|
} |