]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/bootstrap/image/download/download.factor
factor: fix a few more errors
[factor.git] / basis / bootstrap / image / download / download.factor
index ccef1a0c128c2829fbf1b08bc8ba93464affd034..39fc4ddd957d16a00acef6d22a44c3038173aa6f 100644 (file)
@@ -8,7 +8,7 @@ CONSTANT: url URL" http://downloads.factorcode.org/images/master/"
 
 : download-checksums ( -- alist )
     url "checksums.txt" >url derive-url http-get nip
-    lines [ " " split1 ] { } map>assoc ;
+    split-lines [ " " split1 ] { } map>assoc ;
 
 : file-checksum ( image -- checksum )
     md5 checksum-file bytes>hex-string ;