]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/tools/image-analyzer/graphviz/graphviz-tests.factor
io.files: exists? -> file-exists? and rename primitive.
[factor.git] / extra / tools / image-analyzer / graphviz / graphviz-tests.factor
index f65125b41320da1a3dfba8e16bcb33f0cdb946d3..d941b36d9590989485f8d2ee8c7cf4be0ad9bf1a 100644 (file)
@@ -8,7 +8,7 @@ IN: tools.image-analyzer.graphviz.tests
     boot-image-name resource-path ;
 
 : ?make-image ( arch -- )
-    dup boot-image-path exists? [ drop ] [ make-image ] if ;
+    dup boot-image-path file-exists? [ drop ] [ make-image ] if ;
 
 : loadable-images ( -- images )
     image-names cpu name>> '[ _ tail? ] filter ;