AbstractOperatingSystem.st
changeset 22196 a1805a40d43f
parent 22180 723fac611344
child 22240 9ba9a169b8d5
--- a/AbstractOperatingSystem.st	Fri Aug 11 12:14:17 2017 +0200
+++ b/AbstractOperatingSystem.st	Fri Aug 11 12:43:58 2017 +0200
@@ -1425,24 +1425,24 @@
         This argument is ignored on Unix systems.
         See examples below."
 
-        |osProcess|
-
-        osProcess := OSProcess new
-            command:aCommandStringOrArray
-            environment:environmentDictionary
-            directory:dirOrNil
-            inStream:anInStream
-            outStream:anOutStream
-            errorStream:anErrStream
-            auxStream:anAuxStream
-            showWindow:showWindowBooleanOrNil
-            lineWise:lineWise.
-
-        osProcess execute ifFalse:[
-            aBlock value:osProcess exitStatus.
-            ^ false.
-        ].
-        ^ true.
+    |osProcess|
+
+    osProcess := OSProcess new
+        command:aCommandStringOrArray
+        environment:environmentDictionary
+        directory:dirOrNil
+        inStream:anInStream
+        outStream:anOutStream
+        errorStream:anErrStream
+        auxStream:anAuxStream
+        showWindow:showWindowBooleanOrNil
+        lineWise:lineWise.
+
+    osProcess execute ifFalse:[
+        aBlock value:osProcess exitStatus.
+        ^ false.
+    ].
+    ^ true.
 
     "Modified: / 09-08-2017 / 22:56:15 / cg"
 !