]> gitweb.factorcode.org Git - factor.git/commitdiff
vocabs.metadata: sort metadata-files by filename
authorJohn Benediktsson <mrjbq7@gmail.com>
Fri, 11 Feb 2022 21:41:24 +0000 (13:41 -0800)
committerJohn Benediktsson <mrjbq7@gmail.com>
Fri, 11 Feb 2022 21:41:24 +0000 (13:41 -0800)
basis/vocabs/metadata/metadata.factor

index adbc1d46245ead4e9e8a32b7cd36cc227dbc74b1..6abd6dd7e7ac38a07af72ff76c65e33384c8cec5 100644 (file)
@@ -104,11 +104,11 @@ M: unsupported-platform summary
 : vocab-metadata-files ( vocab -- paths )
     [
         {
-            [ vocab-summary-path file-exists?, ]
             [ vocab-authors-path file-exists?, ]
-            [ vocab-tags-path file-exists?, ]
             [ vocab-platforms-path file-exists?, ]
             [ vocab-resources-path file-exists?, ]
+            [ vocab-summary-path file-exists?, ]
+            [ vocab-tags-path file-exists?, ]
         } cleave
     ] { } make ;