diff options
author | complexengine <31100120+complexengine@users.noreply.github.com> | 2020-04-30 09:10:31 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-30 09:10:31 +0530 |
commit | 399ee3fee7dfe9e01bf8a5f4e3735c667ed3a40e (patch) | |
tree | 7f19847f13d2c9df1128b5e6597b315424630f11 /python | |
parent | 343f249c1d1dbd46d0712e34c1baa9aafe19a75a (diff) | |
download | servo-399ee3fee7dfe9e01bf8a5f4e3735c667ed3a40e.tar.gz servo-399ee3fee7dfe9e01bf8a5f4e3735c667ed3a40e.zip |
Update Ubuntu version upto 20.04
Update Ubuntu version upto 20.04
Diffstat (limited to 'python')
-rw-r--r-- | python/servo/bootstrap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/bootstrap.py b/python/servo/bootstrap.py index 381d6ba57cf..182c8fcc587 100644 --- a/python/servo/bootstrap.py +++ b/python/servo/bootstrap.py @@ -352,7 +352,7 @@ def get_linux_distribution(): raise Exception('unsupported version of %s: %s' % (distrib, version)) distrib, version = 'Ubuntu', base_version elif distrib.lower() == 'ubuntu': - if version > '19.10': + if version > '20.04': raise Exception('unsupported version of %s: %s' % (distrib, version)) # Fixme: we should allow checked/supported versions only elif distrib.lower() not in [ |