We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c9730b commit c16ce64Copy full SHA for c16ce64
bin/plugins.ts
@@ -1,6 +1,6 @@
1
'use strict';
2
3
-import {linkInstaller} from "ep_etherpad-lite/static/js/pluginfw/installer";
+import {linkInstaller, checkForMigration} from "ep_etherpad-lite/static/js/pluginfw/installer";
4
import {persistInstalledPlugins} from "./commonPlugins";
5
import fs from "node:fs";
6
const settings = require('ep_etherpad-lite/node/utils/Settings');
@@ -56,6 +56,7 @@ const install = ()=> {
56
}
57
58
(async () => {
59
+ await checkForMigration();
60
await run();
61
await persistInstalledPlugins();
62
})();
@@ -84,6 +85,7 @@ const remove = (plugins: string[])=>{
84
85
86
87
88
89
await walk();
90
91
0 commit comments