diff options
author | Vincent Ricard <magic@magicninja.org> | 2021-01-14 19:57:27 +0100 |
---|---|---|
committer | Vincent Ricard <magic@magicninja.org> | 2021-01-14 20:00:20 +0100 |
commit | 02e9fc6ff9d43528181932eca73108a00cb189d5 (patch) | |
tree | f1d345f637a93a2d3432f05eeb98bff8f5262ea0 /python/servo/bootstrap.py | |
parent | 2efc2e28806c669bd4d9c0a079d44bf196de05a1 (diff) | |
download | servo-02e9fc6ff9d43528181932eca73108a00cb189d5.tar.gz servo-02e9fc6ff9d43528181932eca73108a00cb189d5.zip |
Fix bootstrap error on Ubuntu 20.10
Diffstat (limited to 'python/servo/bootstrap.py')
-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 9b2c70b7984..f98ad5e8b42 100644 --- a/python/servo/bootstrap.py +++ b/python/servo/bootstrap.py @@ -374,7 +374,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 > '20.04': + if version > '20.10': raise Exception('unsupported version of %s: %s' % (distrib, version)) # Fixme: we should allow checked/supported versions only elif distrib.lower() not in [ |