PeerTube/scripts/plugin/uninstall.ts

30 lines
670 B
TypeScript
Raw Normal View History

2021-06-25 17:39:27 +02:00
import { program } from 'commander'
import { initDatabaseModels } from '../../server/initializers/database'
2019-07-12 11:39:58 +02:00
import { PluginManager } from '../../server/lib/plugins/plugin-manager'
program
.option('-n, --npm-name [npmName]', 'Package name to install')
.parse(process.argv)
2021-02-03 09:33:05 +01:00
const options = program.opts()
if (!options.npmName) {
2019-07-12 11:39:58 +02:00
console.error('You need to specify the plugin name.')
process.exit(-1)
}
run()
.then(() => process.exit(0))
.catch(err => {
console.error(err)
process.exit(-1)
})
async function run () {
2019-07-12 11:39:58 +02:00
await initDatabaseModels(true)
2021-02-03 09:33:05 +01:00
const toUninstall = options.npmName
2019-07-12 11:39:58 +02:00
await PluginManager.Instance.uninstall(toUninstall)
}