Skip to content

Commit

Permalink
Merge pull request #29 from KristofferC/patch-3
Browse files Browse the repository at this point in the history
fix not printing already existing packages
  • Loading branch information
StefanKarpinski committed Nov 16, 2017
2 parents 9d53433 + 91f5803 commit 696afd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Operations.jl
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ function apply_versions(env::EnvCache, pkgs::Vector{PackageSpec})::Vector{UUID}
name, hash = names[uuid], hashes[uuid]
try
version_path, new = install(env, uuid, name, hash, urls[uuid], version)
put!(results, (pkg, version_path, version, hash, true))
put!(results, (pkg, version_path, version, hash, new))
catch e
put!(results, e)
end
Expand Down

0 comments on commit 696afd0

Please sign in to comment.