From 88af81485b90085f931fb4cda45fa78012edd46f Mon Sep 17 00:00:00 2001 From: Vitaliy Gulyy Date: Tue, 23 Jun 2020 13:41:26 +0300 Subject: [PATCH] Revert changes in plugin-reader.ts Signed-off-by: Vitaliy Gulyy --- packages/plugin-ext/src/hosted/node/plugin-reader.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/plugin-ext/src/hosted/node/plugin-reader.ts b/packages/plugin-ext/src/hosted/node/plugin-reader.ts index e5086ee216763..ff70d8e9d8d7e 100644 --- a/packages/plugin-ext/src/hosted/node/plugin-reader.ts +++ b/packages/plugin-ext/src/hosted/node/plugin-reader.ts @@ -92,6 +92,7 @@ export class HostedPluginReader implements BackendApplicationContribution { if (!pluginPath) { return undefined; } + pluginPath = path.normalize(pluginPath + '/'); const manifest = await loadManifest(pluginPath); if (!manifest) { return undefined;