Skip to content
Snippets Groups Projects
Commit 630e1f7e authored by SamTV12345's avatar SamTV12345
Browse files

Fixed base plugin install path.

parent a7f81e82
No related branches found
No related tags found
No related merge requests found
...@@ -53,7 +53,7 @@ const migratePluginsFromNodeModules = async () => { ...@@ -53,7 +53,7 @@ const migratePluginsFromNodeModules = async () => {
if (pkg.startsWith(plugins.prefix) && pkg !== 'ep_etherpad-lite') { if (pkg.startsWith(plugins.prefix) && pkg !== 'ep_etherpad-lite') {
if (!info._resolved) { if (!info._resolved) {
// Install from node_modules directory // Install from node_modules directory
await exports.manager.installFromPath(`${findEtherpadRoot()}/src/node_modules/${pkg}`); await exports.manager.installFromPath(`${findEtherpadRoot()}/node_modules/${pkg}`);
} else { } else {
await exports.manager.install(pkg); await exports.manager.install(pkg);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment