We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 862b28f commit 4e48204Copy full SHA for 4e48204
packages/angular_devkit/benchmark/src/monitored-process.ts
@@ -37,7 +37,7 @@ export class LocalMonitoredProcess implements MonitoredProcess {
37
run(): Observable<number> {
38
return new Observable(obs => {
39
const { cmd, cwd, args } = this.command;
40
- const spawnOptions: SpawnOptions = { cwd };
+ const spawnOptions: SpawnOptions = { cwd: cwd, shell: true };
41
42
// Spawn the process.
43
const childProcess = spawn(cmd, args, spawnOptions);
0 commit comments