]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - scripts/plugin/uninstall.ts
Merge branch 'release/4.0.0' into develop
[github/Chocobozzz/PeerTube.git] / scripts / plugin / uninstall.ts
1 import { program } from 'commander'
2 import { initDatabaseModels } from '../../server/initializers/database'
3 import { PluginManager } from '../../server/lib/plugins/plugin-manager'
4
5 program
6 .option('-n, --npm-name [npmName]', 'Package name to install')
7 .parse(process.argv)
8
9 const options = program.opts()
10
11 if (!options.npmName) {
12 console.error('You need to specify the plugin name.')
13 process.exit(-1)
14 }
15
16 run()
17 .then(() => process.exit(0))
18 .catch(err => {
19 console.error(err)
20 process.exit(-1)
21 })
22
23 async function run () {
24
25 await initDatabaseModels(true)
26
27 const toUninstall = options.npmName
28 await PluginManager.Instance.uninstall(toUninstall)
29 }