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 89fd6e9 commit 9337c7dCopy full SHA for 9337c7d
src/schematics/deploy/actions.ts
@@ -31,6 +31,7 @@ const spawnAsync = async (
31
) =>
32
new Promise<Buffer>((resolve, reject) => {
33
const [spawnCommand, ...args] = command.split(/\s+/);
34
+ options = { ...(options || {}), shell: true };
35
const spawnProcess = spawn(spawnCommand, args, options);
36
const chunks: Buffer[] = [];
37
const errorChunks: Buffer[] = [];
0 commit comments