diff --git a/angular/scripts/build-core.js b/angular/scripts/build-core.js index ae1c309c8c..bc290205fb 100644 --- a/angular/scripts/build-core.js +++ b/angular/scripts/build-core.js @@ -29,7 +29,7 @@ function buildSchematics(){ path.join(__dirname, '..', 'tsconfig.schematics.json'), ]; - const p = spawn(cmd, args, { cwd: typescriptPath, stdio: 'inherit' }); + const p = spawn(cmd, args, { cwd: typescriptPath, stdio: 'inherit', shell: true }); p.on('close', (code) => { if (code > 0) { console.log(`ng-add build exited with ${code}`);