diff options
author | sagu <16504129+sagudev@users.noreply.github.com> | 2022-08-27 12:21:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-27 12:21:19 +0200 |
commit | 0e462a851b4d97cfa983c8f24b5fae0fc91811b3 (patch) | |
tree | a2f12a409fad219d84f82c668f3eb1330acb3734 /python/servo/bootstrap.py | |
parent | 55ca150c72c5ff88bb954e26cf45d59261f33817 (diff) | |
download | servo-0e462a851b4d97cfa983c8f24b5fae0fc91811b3.tar.gz servo-0e462a851b4d97cfa983c8f24b5fae0fc91811b3.zip |
Update bootstrap.py
support Ubuntu 22.04
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 6d288ac2a68..ebdf9973053 100644 --- a/python/servo/bootstrap.py +++ b/python/servo/bootstrap.py @@ -382,7 +382,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 > '21.10': + if version > '22.04': raise Exception('unsupported version of %s: %s' % (distrib, version)) # Fixme: we should allow checked/supported versions only elif distrib.lower() not in [ |