]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/tools/image-analyzer/image-analyzer-tests.factor
io.files: exists? -> file-exists? and rename primitive.
[factor.git] / extra / tools / image-analyzer / image-analyzer-tests.factor
index 0c1756362386f6a3b2affb184578da9ad7484301..882bf2ba5ef9be2c5e364caed6544fd7f3902296 100644 (file)
@@ -6,7 +6,7 @@ IN: tools.image-analyzer.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 ;