aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2019-10-27 21:32:22 -0400
committerGitHub <noreply@github.com>2019-10-27 21:32:22 -0400
commit9640ad1ccfd1cab4fc54a85368efa805006ec04e (patch)
treef283aaa83be3a73aa725b2c362df64e56138be7e /python/servo
parent2ad6e940913972620eab6c45a3fe2ace3c2c88f0 (diff)
parent94834420073a5d81e41d554220e6c2ebdf310ef9 (diff)
downloadservo-9640ad1ccfd1cab4fc54a85368efa805006ec04e.tar.gz
servo-9640ad1ccfd1cab4fc54a85368efa805006ec04e.zip
Auto merge of #24562 - mnem:fix-bootstrap-ubuntu-19.10, r=jdm
Update the maximum version of Ubuntu suppported to 19.10 Update bootstrap.py to allow it to run on Ubuntu 19.10 --- - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [X] These changes fix #23881 - [ ] There are tests for these changes OR - [X] These changes do not require tests because there are no tests for bootstrap.py
Diffstat (limited to 'python/servo')
-rw-r--r--python/servo/bootstrap.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/bootstrap.py b/python/servo/bootstrap.py
index 1e1703236b2..f240131f30a 100644
--- a/python/servo/bootstrap.py
+++ b/python/servo/bootstrap.py
@@ -379,7 +379,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.04':
+ if version > '19.10':
raise Exception('unsupported version of %s: %s' % (distrib, version))
# Fixme: we should allow checked/supported versions only
elif distrib.lower() not in [