aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/plugin/uninstall.ts
blob: b5e1ddea296d1e2944c0baa39a66ae0161ef095e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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)
}