Skip to content

Commit

Permalink
updated rustup requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
avadacatavra committed May 30, 2018
1 parent 9f142b9 commit 4dfe43e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/servo/command_base.py
Expand Up @@ -309,8 +309,8 @@ def call_rustup_run(self, args, **kwargs):
return 1
raise
version = tuple(map(int, re.match("rustup (\d+)\.(\d+)\.(\d+)", version_line).groups()))
if version < (1, 8, 0):
print "rustup is at version %s.%s.%s, Servo requires 1.8.0 or more recent." % version
if version < (1, 11, 0):
print "rustup is at version %s.%s.%s, Servo requires 1.11.0 or more recent." % version
print "Try running 'rustup self update'."
return 1
toolchain = self.toolchain()
Expand Down

0 comments on commit 4dfe43e

Please sign in to comment.