JavaRelease.st
branchdevelopment
changeset 2921 85ccd41f883c
parent 2909 2fae1fd966be
child 2962 83d32dc4fcea
--- a/JavaRelease.st	Wed Nov 13 11:13:40 2013 +0000
+++ b/JavaRelease.st	Thu Nov 14 14:50:25 2013 -0800
@@ -1661,18 +1661,18 @@
     homeFromRegistry = home ifTrue:[ ^ true ].
 
     "JDK..."
-    (f := home / 'LICENSE') exists ifTrue:[
+    (f := home asFilename / 'LICENSE') exists ifTrue:[
         f readingFileDo:[:s|
             ((s nextLine = 'Please refer to http://java.com/license')
-                and:[(home / 'release') exists not
-                    and:[(home / 'THIRDPARTYLICENSEREADME-JAVAFX.txt') exists not]]) ifTrue:[ ^ true ]
+                and:[(home asFilename / 'release') exists not
+                    and:[(home asFilename / 'THIRDPARTYLICENSEREADME-JAVAFX.txt') exists not]]) ifTrue:[ ^ true ]
         ].
     ].
     "JRE..."
-    (f := home / 'COPYRIGHT') exists ifTrue:[
+    (f := home asFilename / 'COPYRIGHT') exists ifTrue:[
         f readingFileDo:[:s|
             (s nextLine includesString: 'Oracle') ifTrue:[
-                ^(home / 'LICENSE.txt') exists
+                ^(home asFilename / 'LICENSE.txt') exists
             ]
         ].
     ].
@@ -1689,7 +1689,7 @@
     "
 
     "Created: / 12-02-2013 / 02:52:43 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified: / 16-02-2013 / 02:54:20 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 14-11-2013 / 14:30:25 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 validateJavaVersionString:aVersionString