Fixes changelogs parsing on linux (#60777)

This commit is contained in:
Vladimir Veisman
2021-08-13 12:02:58 -07:00
committed by GitHub
parent 79dc58fe2a
commit 0ff1d5934c
+1 -1
View File
@@ -25,7 +25,7 @@
var/list/data = list( "dates" = list() )
var/regex/ymlRegex = regex(@"\.yml", "g")
for(var/archive_file in flist("[global.config.directory]/../html/changelogs/archive/"))
for(var/archive_file in sortList(flist("html/changelogs/archive/")))
var/archive_date = ymlRegex.Replace(archive_file, "")
data["dates"] = list(archive_date) + data["dates"]