diff options
author | Akshat Agarwal <humancalico@disroot.org> | 2020-06-15 04:05:34 +0530 |
---|---|---|
committer | Akshat Agarwal <humancalico@disroot.org> | 2020-06-15 04:05:34 +0530 |
commit | 1d789867d26931888e83dce28fe5ff1fa6414e0b (patch) | |
tree | 0f4c415731f81987a15ec279c320d900d0f81029 /python/servo/bootstrap.py | |
parent | 74cd81b8ce823f8ddf830ef4ef144d4416822a54 (diff) | |
download | servo-1d789867d26931888e83dce28fe5ff1fa6414e0b.tar.gz servo-1d789867d26931888e83dce28fe5ff1fa6414e0b.zip |
support Pop!_OS 20.04
Diffstat (limited to 'python/servo/bootstrap.py')
-rw-r--r-- | python/servo/bootstrap.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/python/servo/bootstrap.py b/python/servo/bootstrap.py index 0e9dbeb7981..eb4cc84f36b 100644 --- a/python/servo/bootstrap.py +++ b/python/servo/bootstrap.py @@ -351,7 +351,9 @@ def get_linux_distribution(): else: major = version - if major == '19': + if major == '20': + base_version = '20.04' + elif major == '19': base_version = '18.04' elif major == '18': base_version = '16.04' |