AbstractOperatingSystem.st
changeset 11180 ce009dee5161
parent 11170 ced52c04b215
child 11403 0a34ea95a57b
--- a/AbstractOperatingSystem.st	Fri Sep 26 13:58:32 2008 +0200
+++ b/AbstractOperatingSystem.st	Mon Sep 29 20:52:14 2008 +0200
@@ -1155,7 +1155,11 @@
         outStreamToClose := externalOutStream := pOut at:2.
         outputShufflerProcess :=
             [
-                self shuffleAllFrom:shuffledOutStream to:anOutStream lineWise:lineWise lockWith:terminateLock.
+                WriteError handle:[:ex |
+                    "/ ignored
+                ] do:[
+                    self shuffleAllFrom:shuffledOutStream to:anOutStream lineWise:lineWise lockWith:terminateLock.
+                ].
             ] newProcess
                 name:'cmd output shuffler';
 "/                beSystemProcess;
@@ -6557,7 +6561,7 @@
 !AbstractOperatingSystem class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/AbstractOperatingSystem.st,v 1.178 2008-09-19 10:44:17 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/AbstractOperatingSystem.st,v 1.179 2008-09-29 18:52:14 mb Exp $'
 ! !
 
 AbstractOperatingSystem initialize!