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