mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-25 18:55:32 -06:00
WIP plugins: update plugin
This commit is contained in:
26
scripts/plugin/uninstall.ts
Executable file
26
scripts/plugin/uninstall.ts
Executable file
@@ -0,0 +1,26 @@
|
||||
import { initDatabaseModels } from '../../server/initializers/database'
|
||||
import * as program from 'commander'
|
||||
import { PluginManager } from '../../server/lib/plugins/plugin-manager'
|
||||
|
||||
program
|
||||
.option('-n, --npm-name [npmName]', 'Package name to install')
|
||||
.parse(process.argv)
|
||||
|
||||
if (!program['npmName']) {
|
||||
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 () {
|
||||
await initDatabaseModels(true)
|
||||
|
||||
const toUninstall = program['npmName']
|
||||
await PluginManager.Instance.uninstall(toUninstall)
|
||||
}
|
||||
Reference in New Issue
Block a user