Skip to content
This repository has been archived by the owner on Nov 24, 2020. It is now read-only.

Commit

Permalink
skip not-found packages when building star changes
Browse files Browse the repository at this point in the history
was having issues with old name of hwloc
  • Loading branch information
tkelman committed Jul 18, 2016
1 parent ec76113 commit e23e766
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions website/build_pulse.jl
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,10 @@ star_top_change = sort(star_changes, by=f->(f[2]-f[3]), rev=true)
temp_data["TOPSTARCHANGE"] = Any[]
for i in 1:num_top_star
pkgname, cur_star, pre_star = star_top_change[i]
if !haskey(pkgdict[NIGHTLY], pkgname)
warn("$pkgname not found in pkgdict[NIGHTLY], skipping!")
continue
end
url = pkgdict[NIGHTLY][pkgname]["url"]
push!(temp_data["TOPSTARCHANGE"], Dict(
"url" => url,
Expand Down

0 comments on commit e23e766

Please sign in to comment.