]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/gobject-introspection/gobject-introspection.factor
io.files: exists? -> file-exists? and rename primitive.
[factor.git] / basis / gobject-introspection / gobject-introspection.factor
index 23fb5541c7aca063d3a4589106d6edc33193d4c4..ae90e73e0517db984dc9d1b8f60affa490226613 100644 (file)
@@ -33,11 +33,11 @@ M: gir-not-found summary
     ] { } make ;
 
 :: resolve-gir-path ( path -- path )
-    path exists?
+    path file-exists?
     [ path ] [
         current-vocab-dirs custom-gir-dirs system-gir-dirs
         3append sift :> paths
-        paths [ path append-path exists? ] find nip
+        paths [ path append-path file-exists? ] find nip
         [ path append-path ] [ path paths gir-not-found ] if*
     ] if ;