mirror of
https://github.com/servo/servo.git
synced 2025-08-05 21:50:18 +01:00
updated rustup requirement
This commit is contained in:
parent
9f142b9c22
commit
4dfe43e72d
1 changed files with 2 additions and 2 deletions
|
@ -309,8 +309,8 @@ class CommandBase(object):
|
||||||
return 1
|
return 1
|
||||||
raise
|
raise
|
||||||
version = tuple(map(int, re.match("rustup (\d+)\.(\d+)\.(\d+)", version_line).groups()))
|
version = tuple(map(int, re.match("rustup (\d+)\.(\d+)\.(\d+)", version_line).groups()))
|
||||||
if version < (1, 8, 0):
|
if version < (1, 11, 0):
|
||||||
print "rustup is at version %s.%s.%s, Servo requires 1.8.0 or more recent." % version
|
print "rustup is at version %s.%s.%s, Servo requires 1.11.0 or more recent." % version
|
||||||
print "Try running 'rustup self update'."
|
print "Try running 'rustup self update'."
|
||||||
return 1
|
return 1
|
||||||
toolchain = self.toolchain()
|
toolchain = self.toolchain()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue