Aalex Gabi

Results 18 comments of Aalex Gabi

@jeromew I guess something like: ``` echo hello | bash -c 'exit 1' | cat ```

@jeromew I did a "fix" in a fork like this because it was crashing the process (the error was not passed inside the pipeline): ``` function kill(err) { that._stdout.destroy() that._stderr.destroy()...

As a workaround I do this: ``` // Make sure pipe is called immediately to avoid losing data https://github.com/archiverjs/node-archiver/issues/510 archive.append(pipeline([stream, new PassThrough()], (err) => { if (err) { // Log...

When you have more than 1 packages that install over Git (that have prepare scripts), this error happens almost every time and is not spurious anymore.

I confirm that this is a functional workaround: ``` yarn install --network-concurrency 1 ```

@tombouctou Thank you for the fix. I had this problem when the session data was containing a string which represented a php serialized object. @naholyr Can you merge this? @tombouctou...

Better error handling would be much appreciated!

I did a very basic implementation here https://github.com/davglass/license-checker/pull/255/files Not sure it's going to be accepted by maintainers though. @RSeidelsohn Thanks for the fork. It seems to be a better implementation...