Add stderror to the pipe results, so we can find out what happened when things go wrong. Not an optimal answer, but a quick one.

This commit is contained in:
Morgan Schweers
2009-10-23 23:56:06 -07:00
committed by Nathan Kinsinger
parent e43a87e3f8
commit ffa2e1aed4
+1
View File
@@ -32,6 +32,7 @@
NSPipe* pipe = [NSPipe pipe];
task.standardOutput = pipe;
task.standardError = pipe;
return task;
}