AbstractOperatingSystem.st
branchjv
changeset 24914 5428e2b96ef4
parent 24905 716edea8e854
child 25381 bbae1f420889
--- a/AbstractOperatingSystem.st	Tue Nov 12 22:02:00 2019 +0000
+++ b/AbstractOperatingSystem.st	Thu Nov 14 16:21:12 2019 +0000
@@ -5247,9 +5247,9 @@
                         definition module , '/' , definition directory , '/' , definition applicationName
                 ] ifFalse:[ OperatingSystem isMSWINDOWSlike ifTrue:[ 
                     execPathEndInBuildTree1 :=
-                        definition module , '/' , definition directory , '/' , definition applicationNameConsole.
+                        definition module , '\' , (definition directory copyReplaceAll: $/ with: $\) , '\' , definition applicationNameConsole.
                     execPathEndInBuildTree2 :=
-                        definition module , '/' , definition directory , '/' , definition applicationNameNoConsole.
+                        definition module , '\' , (definition directory copyReplaceAll: $/ with: $\) , '\' , definition applicationNameNoConsole.
                 ] ifFalse:[ 
                     self error:'Operating system not supported'.
                 ]].
@@ -5275,6 +5275,7 @@
 
     "Modified: / 04-02-2011 / 16:27:15 / cg"
     "Modified (comment): / 19-07-2019 / 12:08:00 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 14-11-2019 / 16:10:59 / jv"
 !
 
 defaultSystemPath