From 02e9fc6ff9d43528181932eca73108a00cb189d5 Mon Sep 17 00:00:00 2001 From: Vincent Ricard Date: Thu, 14 Jan 2021 19:57:27 +0100 Subject: Fix bootstrap error on Ubuntu 20.10 --- python/servo/bootstrap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/servo/bootstrap.py') 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 [ -- cgit v1.2.3