OSProcess.st
changeset 23183 76333ab19e6f
parent 23182 6082d007b7c3
child 23184 5527a9f0dfd4
--- a/OSProcess.st	Mon Jul 02 20:45:37 2018 +0200
+++ b/OSProcess.st	Mon Jul 02 20:49:44 2018 +0200
@@ -193,12 +193,13 @@
         s nextPutAll:(self possiblyQuoted:executableFile asFilename pathName).
         arrayOfStrings notNil ifTrue:[
             arrayOfStrings do:[:eachArg |
+                s space.
                 s nextPutAll:(self possiblyQuoted:eachArg).
             ].
         ]
     ]
 
-    "Modified: / 02-07-2018 / 20:45:15 / cg"
+    "Modified: / 02-07-2018 / 20:49:21 / cg"
 !
 
 new