diff options
author | Chocobozzz <me@florianbigard.com> | 2021-07-16 09:04:35 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-07-20 15:27:18 +0200 |
commit | 89d241a79c262b9775c233b73cff080043ebb5e6 (patch) | |
tree | cb3b6cb431d25d891ef4e02f66c61d252d17048f /server/tools/peertube-plugins.ts | |
parent | d23dd9fbfc4d26026352c10f81d2795ceaf2908a (diff) | |
download | PeerTube-89d241a79c262b9775c233b73cff080043ebb5e6.tar.gz PeerTube-89d241a79c262b9775c233b73cff080043ebb5e6.tar.zst PeerTube-89d241a79c262b9775c233b73cff080043ebb5e6.zip |
Shorter server command names
Diffstat (limited to 'server/tools/peertube-plugins.ts')
-rw-r--r-- | server/tools/peertube-plugins.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/server/tools/peertube-plugins.ts b/server/tools/peertube-plugins.ts index 22a09b779..d9c285115 100644 --- a/server/tools/peertube-plugins.ts +++ b/server/tools/peertube-plugins.ts | |||
@@ -69,7 +69,7 @@ async function pluginsListCLI (command: Command, options: OptionValues) { | |||
69 | if (options.onlyThemes) pluginType = PluginType.THEME | 69 | if (options.onlyThemes) pluginType = PluginType.THEME |
70 | if (options.onlyPlugins) pluginType = PluginType.PLUGIN | 70 | if (options.onlyPlugins) pluginType = PluginType.PLUGIN |
71 | 71 | ||
72 | const { data } = await server.pluginsCommand.list({ start: 0, count: 100, sort: 'name', pluginType }) | 72 | const { data } = await server.plugins.list({ start: 0, count: 100, sort: 'name', pluginType }) |
73 | 73 | ||
74 | const table = new CliTable3({ | 74 | const table = new CliTable3({ |
75 | head: [ 'name', 'version', 'homepage' ], | 75 | head: [ 'name', 'version', 'homepage' ], |
@@ -109,7 +109,7 @@ async function installPluginCLI (command: Command, options: OptionValues) { | |||
109 | await assignToken(server, username, password) | 109 | await assignToken(server, username, password) |
110 | 110 | ||
111 | try { | 111 | try { |
112 | await server.pluginsCommand.install({ npmName: options.npmName, path: options.path }) | 112 | await server.plugins.install({ npmName: options.npmName, path: options.path }) |
113 | } catch (err) { | 113 | } catch (err) { |
114 | console.error('Cannot install plugin.', err) | 114 | console.error('Cannot install plugin.', err) |
115 | process.exit(-1) | 115 | process.exit(-1) |
@@ -136,7 +136,7 @@ async function updatePluginCLI (command: Command, options: OptionValues) { | |||
136 | await assignToken(server, username, password) | 136 | await assignToken(server, username, password) |
137 | 137 | ||
138 | try { | 138 | try { |
139 | await server.pluginsCommand.update({ npmName: options.npmName, path: options.path }) | 139 | await server.plugins.update({ npmName: options.npmName, path: options.path }) |
140 | } catch (err) { | 140 | } catch (err) { |
141 | console.error('Cannot update plugin.', err) | 141 | console.error('Cannot update plugin.', err) |
142 | process.exit(-1) | 142 | process.exit(-1) |
@@ -158,7 +158,7 @@ async function uninstallPluginCLI (command: Command, options: OptionValues) { | |||
158 | await assignToken(server, username, password) | 158 | await assignToken(server, username, password) |
159 | 159 | ||
160 | try { | 160 | try { |
161 | await server.pluginsCommand.uninstall({ npmName: options.npmName }) | 161 | await server.plugins.uninstall({ npmName: options.npmName }) |
162 | } catch (err) { | 162 | } catch (err) { |
163 | console.error('Cannot uninstall plugin.', err) | 163 | console.error('Cannot uninstall plugin.', err) |
164 | process.exit(-1) | 164 | process.exit(-1) |