Skip to content

Commit 08bc2d5

Browse files
authored
Auto merge of servo#28958 - sagudev:patch-2, r=jdm
Update bootstrap.py to support Ubuntu 22.04 None
2 parents 55ca150 + 0e462a8 commit 08bc2d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/servo/bootstrap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ def get_linux_distribution():
382382
raise Exception('unsupported version of %s: %s' % (distrib, version))
383383
distrib, version = 'Ubuntu', base_version
384384
elif distrib.lower() == 'ubuntu':
385-
if version > '21.10':
385+
if version > '22.04':
386386
raise Exception('unsupported version of %s: %s' % (distrib, version))
387387
# Fixme: we should allow checked/supported versions only
388388
elif distrib.lower() not in [

0 commit comments

Comments
 (0)