We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84e0f38 commit 1ca1e70Copy full SHA for 1ca1e70
1 file changed
src/commands/jit/install.ts
@@ -34,7 +34,7 @@ export default class JitInstall extends SfCommand<void> {
34
this.log(`• ${plugin} ${chalk.dim(version)}`);
35
if (flags['dry-run']) continue;
36
try {
37
- await this.config.runCommand(`plugins:install ${plugin}@${version}`);
+ await this.config.runCommand('plugins:install', [`${plugin}@${version}`]);
38
} catch {
39
this.log(`Failed to install ${plugin} ${chalk.dim(version)}.`);
40
}
0 commit comments