X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=scripts%2Fplugin%2Finstall.ts;h=0795d7c935673fee073444be618d0d5672bd9b2a;hb=3318147300b4f998adf728eb0a5a14a4c1829c51;hp=54738f50f15c3b68e731f19c76bd5daef6d8defe;hpb=2aaa1a3fdc49be77aec5309dab5507865c38d392;p=github%2FChocobozzz%2FPeerTube.git diff --git a/scripts/plugin/install.ts b/scripts/plugin/install.ts index 54738f50f..0795d7c93 100755 --- a/scripts/plugin/install.ts +++ b/scripts/plugin/install.ts @@ -1,10 +1,7 @@ -import { registerTSPaths } from '../../server/helpers/register-ts-paths' -registerTSPaths() - +import { program } from 'commander' +import { isAbsolute } from 'path' import { initDatabaseModels } from '../../server/initializers/database' -import * as program from 'commander' import { PluginManager } from '../../server/lib/plugins/plugin-manager' -import { isAbsolute } from 'path' program .option('-n, --npm-name [npmName]', 'Plugin to install') @@ -12,12 +9,14 @@ program .option('-p, --plugin-path [pluginPath]', 'Path of the plugin you want to install') .parse(process.argv) -if (!program['npmName'] && !program['pluginPath']) { +const options = program.opts() + +if (!options.npmName && !options.pluginPath) { console.error('You need to specify a plugin name with the desired version, or a plugin path.') process.exit(-1) } -if (program['pluginPath'] && !isAbsolute(program['pluginPath'])) { +if (options.pluginPath && !isAbsolute(options.pluginPath)) { console.error('Plugin path should be absolute.') process.exit(-1) } @@ -32,6 +31,6 @@ run() async function run () { await initDatabaseModels(true) - const toInstall = program['npmName'] || program['pluginPath'] - await PluginManager.Instance.install(toInstall, program['pluginVersion'], !!program['pluginPath']) + const toInstall = options.npmName || options.pluginPath + await PluginManager.Instance.install(toInstall, options.pluginVersion, !!options.pluginPath) }