mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-19 14:13:34 +01:00
Fixed base plugin install path.
This commit is contained in:
parent
a7f81e824a
commit
630e1f7ebb
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ const migratePluginsFromNodeModules = async () => {
|
|||
if (pkg.startsWith(plugins.prefix) && pkg !== 'ep_etherpad-lite') {
|
||||
if (!info._resolved) {
|
||||
// Install from node_modules directory
|
||||
await exports.manager.installFromPath(`${findEtherpadRoot()}/src/node_modules/${pkg}`);
|
||||
await exports.manager.installFromPath(`${findEtherpadRoot()}/node_modules/${pkg}`);
|
||||
} else {
|
||||
await exports.manager.install(pkg);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue