From a2ebc4a4fdddf626c6b5998b3aa0758a54b97912 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Berg?= Date: Mon, 26 Oct 2009 15:34:51 +0100 Subject: [PATCH] Add stderr to PBEasyPipe output for helpful messages to Console. --- PBEasyPipe.m | 1 + 1 file changed, 1 insertion(+) diff --git a/PBEasyPipe.m b/PBEasyPipe.m index 11abe79..9a45fd9 100644 --- a/PBEasyPipe.m +++ b/PBEasyPipe.m @@ -41,6 +41,7 @@ NSPipe* pipe = [NSPipe pipe]; [task setStandardOutput:pipe]; + [task setStandardError:pipe]; return task; }