Skip to content

Commit

Permalink
parse_package_infos: process packages in alphabetical order
Browse files Browse the repository at this point in the history
  • Loading branch information
fingolfin committed Jun 21, 2023
1 parent e36c3ac commit e670c09
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion generate_wrapper.jl
Original file line number Diff line number Diff line change
Expand Up @@ -277,8 +277,9 @@ end

function parse_package_infos(fname::String = "package-infos.json")
pkgs = JSON.parsefile("package-infos.json")
for (name, pkginfo) in pkgs
for name in sort(collect(keys(pkgs)))
println("Processing '$name'")
pkginfo = pkgs[name]
update_pkg(pkginfo)
end
end
Expand Down

0 comments on commit e670c09

Please sign in to comment.