mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-05-09 08:25:00 -04:00
Only write plugins to json file in Dockerfile
This commit is contained in:
parent
017ed493e1
commit
fc7f91a055
2 changed files with 5 additions and 13 deletions
|
@ -69,7 +69,9 @@ exports.checkForMigration = async () => {
|
|||
const installedPlugins = JSON.parse(fileContent.toString());
|
||||
|
||||
for (const plugin of installedPlugins.plugins) {
|
||||
await exports.manager.install(plugin)
|
||||
if (plugin.startsWith(plugins.prefix) && plugin !== 'ep_etherpad-lite') {
|
||||
await exports.manager.install(plugin)
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue