]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/io/files/temp/macosx/macosx.factor
io.files: exists? -> file-exists? and rename primitive.
[factor.git] / basis / io / files / temp / macosx / macosx.factor
index 07451b2f8b272e4e5a40f86db3f26509f117f2c9..95fb2abb660293925758bd55205dda65a370b0bf 100644 (file)
@@ -27,7 +27,7 @@ CONSTANT: factor-bundle-name "org.factorcode.Factor"
     factor-bundle-name append-path ;
 
 : first-existing ( paths -- path )
-    [ exists? ] find nip
+    [ file-exists? ] find nip
     [ "no user cache directory found" throw ] unless* ; inline
 
 PRIVATE>