diff --git a/packages/plugin-ext-vscode/src/node/plugin-vscode-file-handler.ts b/packages/plugin-ext-vscode/src/node/plugin-vscode-file-handler.ts index 50f318d9f70a2..fca18ea8682ac 100644 --- a/packages/plugin-ext-vscode/src/node/plugin-vscode-file-handler.ts +++ b/packages/plugin-ext-vscode/src/node/plugin-vscode-file-handler.ts @@ -38,7 +38,7 @@ export class PluginVsCodeFileHandler implements PluginDeployerFileHandler { async handle(context: PluginDeployerFileHandlerContext): Promise { const unpackedPath = path.resolve(this.unpackedFolder, path.basename(context.pluginEntry().path())); - console.log(`unzipping the plugin '${path.basename(context.pluginEntry().path())}' to directory: ${unpackedPath}`); + console.log(`unzipping the VS Code extension '${path.basename(context.pluginEntry().path())}' to directory: ${unpackedPath}`); await context.unzip(context.pluginEntry().path(), unpackedPath); if (context.pluginEntry().path().endsWith('.tgz')) { diff --git a/packages/plugin-ext/src/main/node/handlers/plugin-theia-file-handler.ts b/packages/plugin-ext/src/main/node/handlers/plugin-theia-file-handler.ts index d8ec03697d1f5..c69e4049aa814 100644 --- a/packages/plugin-ext/src/main/node/handlers/plugin-theia-file-handler.ts +++ b/packages/plugin-ext/src/main/node/handlers/plugin-theia-file-handler.ts @@ -33,7 +33,7 @@ export class PluginTheiaFileHandler implements PluginDeployerFileHandler { async handle(context: PluginDeployerFileHandlerContext): Promise { const unpackedPath = path.resolve(this.unpackedFolder, path.basename(context.pluginEntry().path())); - console.log(`unzipping the plugin '${path.basename(context.pluginEntry().path())}' to directory: ${unpackedPath}`); + console.log(`unzipping the plug-in '${path.basename(context.pluginEntry().path())}' to directory: ${unpackedPath}`); await context.unzip(context.pluginEntry().path(), unpackedPath);