mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-19 12:34:32 +08:00
child_process.spawn() with `shell: true` does not quote its arguments, so any data passed in must be surrounded by quotes to properly include spaces. This was making tests fail when the repository is checked out to a directory with a space in it. Easiest solution is to simply not use shell escaping which avoids the whole problem.