aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbors-servo <servo-ops@mozilla.com>2020-12-28 11:51:25 -0500
committerGitHub <noreply@github.com>2020-12-28 11:51:25 -0500
commit772da8531aec46477a09ffb3ccf54916b75e4813 (patch)
tree40343d03035382315f7e0e388e35c95ab3f791eb
parent94ad42066ac78fdcc11b14989a3d96a177586d31 (diff)
parent526faa03f4659940072e0cd2e5adc71bbd515091 (diff)
downloadservo-772da8531aec46477a09ffb3ccf54916b75e4813.tar.gz
servo-772da8531aec46477a09ffb3ccf54916b75e4813.zip
Auto merge of #27986 - simonschmeisser:patch-1, r=jdm
Add support for KDE neon in bootstrap it's based on Ubuntu but provides recent (User edition) or git versions of the KDE Plasma desktop environment and ecosystem --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: --> - [ ] `./mach build -d` does not report any errors - [ ] `./mach test-tidy` does not report any errors - [ ] These changes fix #___ (GitHub issue number if applicable) <!-- Either: --> - [ ] There are tests for these changes OR - [x] These changes do not require tests because they affect just the bootstrap script <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
-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 e118f0d6937..9b2c70b7984 100644
--- a/python/servo/bootstrap.py
+++ b/python/servo/bootstrap.py
@@ -333,7 +333,7 @@ def get_linux_distribution():
distrib = six.ensure_str(distrib)
version = six.ensure_str(version)
- if distrib == 'LinuxMint' or distrib == 'Linux Mint':
+ if distrib in ['LinuxMint', 'Linux Mint', 'KDE neon']:
if '.' in version:
major, _ = version.split('.', 1)
else: