fix(spec): make sure imported specs are sorted alphabetically

This commit is contained in:
Folke Lemaitre 2023-02-17 13:58:16 +01:00
parent e5ba443416
commit ff76e58961
No known key found for this signature in database
GPG Key ID: 41F8B1FBACAE2040
1 changed files with 9 additions and 1 deletions

View File

@ -254,7 +254,15 @@ function Spec:import(spec)
self.modules[#self.modules + 1] = spec.import
local imported = 0
---@type string[]
local modnames = {}
Util.lsmod(spec.import, function(modname)
modnames[#modnames + 1] = modname
end)
table.sort(modnames)
for _, modname in ipairs(modnames) do
imported = imported + 1
Util.track({ import = modname })
self.importing = modname
@ -273,7 +281,7 @@ function Spec:import(spec)
Util.track()
end,
})
end)
end
if imported == 0 then
self:error("No specs found for module " .. spec.import)
end