Sort cache entry listing

This commit is contained in:
Stéphan Kochen
2020-12-03 11:43:46 +01:00
parent 60d9093d93
commit e54893e726
2 changed files with 2 additions and 1 deletions
+1 -1
View File
File diff suppressed because one or more lines are too long
+1
View File
@@ -116,6 +116,7 @@ export default async (project: Project, cache: Cache, report: Report) => {
`[\n` +
cacheEntries
.map((entry) => ` { ${cacheEntryToNix(entry)} }\n`)
.sort()
.join(``) +
` ]`
);