Skip to content

Commit

Permalink
Merge branch 'master' of github.com:JuliaLang/julia
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffBezanson committed Mar 19, 2013
2 parents e736ffc + 69edec1 commit fe5d201
Show file tree
Hide file tree
Showing 2 changed files with 961 additions and 915 deletions.
2 changes: 1 addition & 1 deletion base/pkg.jl
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ function _resolve()
if have[pkg] != want[pkg]
oldver = Metadata.version(pkg,have[pkg])
newver = Metadata.version(pkg,want[pkg])
up = oldver <= newver ? "Up" : "Down"
up = !is(oldver,VersionNumber) || !is(newver,VersionNumber) || oldver <= newver ? "Up" : "Down"
info("$(up)grading $pkg: v$oldver => v$newver")
cd(pkg) do
run(`git checkout -q $(want[pkg])`)
Expand Down
Loading

0 comments on commit fe5d201

Please sign in to comment.