ehmicky
ehmicky
This seemed to have happened again: ``` 2:17:41 AM: Build ready to start 2:18:00 AM: build-image version: 30f629161c0736b1a3ecd8b418e5eeffab5c0faf 2:18:00 AM: build-image tag: v3.3.14 2:18:00 AM: buildbot version: a383ed3390159974f55f285b04457b44cb49efb0 2:18:00 AM:...
Not sure if this one is the same, but this error just happened: ``` Cannot create property 'message' on string 'Error in parsing SVG: Unexpected close tag Line: 4 Column:...
This appears to the problem: https://github.com/Nakachuuuu/imagemin-keep-folder/issues/1
Hi @ramonbrooks456, The `await` execution should be this instead ([see example](https://github.com/sindresorhus/execa#save-and-pipe-output-from-a-child-process)): ```js const childProcess = execa("file-name", { shell:true, all:true }) childProcess.stdout.pipe(process.stdout) const result = await childProcess ``` Also, if you...
This hangs because `/c` is missing. This is actually a core Node.js behavior, it does the same with: ```js childProcess.spawn('cmd.exe', ['anyFile.cmd']) ``` Now I actually don't think we should add...
On the other hand if a user wants to fire `cmd.exe` and does not want to use `/d`, `/s`, `/c` or `/q`, firing `cmd.exe` directly is the way to go....
This sounds good. This makes me wonder: 1) I still think some users might want to use their own parameters. There is an [almost finalized PR in Node](https://github.com/nodejs/node/pull/27327) to support...
Thanks for suggesting this @devinrhode2, I agree with you. `zx` has a very nice developer experience for users who wish to run a sequence of commands. That being said, Execa...
Thanks for sharing! Those are some personal thoughts on the design of `zx`. This is quite subjective, so please feel free to comment! ## What I like ### `$` alias...
Hi @geigerzaehler, `killSignal` is the signal used for terminations due to the `timeout`, `signal` or `maxBuffer` options, not explicit termination with `child.kill()`. The reason is because specific signals can be...