[nodejs] spawn and stdout in 8.1

2012-07-03 Thread Mark Hahn
After switching to 8.1 several modules I use, like imagemagick, seem to be having trouble getting stdout back from a spawn. Did something change in spawn? -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received

Re: [nodejs] spawn and stdout in 8.1

2012-07-03 Thread Mark Hahn
Thanks... I guess I'll have to wait until modules I use have been updated for 0.8. On Tue, Jul 3, 2012 at 12:28 PM, Charlie McConnell char...@charlieistheman.com wrote: The most likely cause is that you now want to listen for the 'close' event instead of 'exit'. 'exit' now fires when the

Re: [nodejs] spawn and stdout in 8.1

2012-07-03 Thread Joshua Holbrook
I'd just start patching them, especially if the library's just shelling out on the backend. Seems like it wouldn't be too bad. :) --Josh On Tue, Jul 3, 2012 at 12:47 PM, Mark Hahn m...@hahnca.com wrote: Thanks... I guess I'll have to wait until modules I use have been updated for 0.8. On

Re: [nodejs] spawn and stdout in 8.1

2012-07-03 Thread Alan Gutierrez
On 7/3/12 3:51 PM, Joshua Holbrook wrote: On Tue, Jul 3, 2012 at 12:47 PM, Mark Hahn m...@hahnca.com wrote: Thanks... I guess I'll have to wait until modules I use have been updated for 0.8. I'd just start patching them, especially if the library's just shelling out on the backend. Seems