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 8575810 commit 101e03cCopy full SHA for 101e03c
src/npm.ts
@@ -27,7 +27,7 @@ export async function installDeps(rootDir: string, pm: NodePM) {
27
printCommand(command, ...args);
28
29
try {
30
- await spawnPromise(command, args, { stdio: 'inherit' });
+ await spawnPromise(command, args, { stdio: 'inherit', shell: true });
31
} catch (err) {
32
throw new CLIError(`Failed to install dependencies: ${err}`);
33
}
@@ -69,7 +69,7 @@ export async function addDeps({
69
70
71
72
73
74
throw new CLIError(`Failed to add dependencies: ${err}`);
75
0 commit comments