From ffa2e1aed421eb8e3f4f6e87638f811daab0d220 Mon Sep 17 00:00:00 2001 From: Morgan Schweers Date: Fri, 23 Oct 2009 23:56:06 -0700 Subject: [PATCH] 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. --- PBEasyPipe.m | 1 + 1 file changed, 1 insertion(+) diff --git a/PBEasyPipe.m b/PBEasyPipe.m index 3b80184..5108254 100644 --- a/PBEasyPipe.m +++ b/PBEasyPipe.m @@ -32,6 +32,7 @@ NSPipe* pipe = [NSPipe pipe]; task.standardOutput = pipe; + task.standardError = pipe; return task; }