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 a049e68 commit ed5c08eCopy full SHA for ed5c08e
packages/plugins/connection-manager/dependency-manager/extension.ts
@@ -68,9 +68,7 @@ export default class DependencyManager implements IExtensionPlugin {
68
if (dep.args) args.push(...dep.args);
69
})
70
progress.report({ message: `Installing "${depNamesString.join(", ")}". Please wait till it finishes. Check the opened terminal for more info.` });
71
- terminal.sendText(`${dependencyManagerSettings.packageManager} ${args.join(" ")}`);
72
- terminal.show();
73
- terminal.sendText("exit 0");
+ terminal.sendText(`${dependencyManagerSettings.packageManager} ${args.join(" ")} && exit 0`);
74
});
75
progress.report({ increment: 100, message: `Finished installing ${depNamesString.join(", ")}` });
76
0 commit comments