aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/platform
diff options
context:
space:
mode:
authorCarlos Bentzen <cadubentzen@gmail.com>2023-09-15 06:20:32 +0200
committerGitHub <noreply@github.com>2023-09-15 04:20:32 +0000
commit0b86d6579823d0786b37cee86eaaf3ce6bd8aa7d (patch)
tree361a490b76b40ca45eb7f4ca6010e76719cb9e5e /python/servo/platform
parentc78533c1a80a192c2c0931775330dcba592b0afd (diff)
downloadservo-0b86d6579823d0786b37cee86eaaf3ce6bd8aa7d.tar.gz
servo-0b86d6579823d0786b37cee86eaaf3ce6bd8aa7d.zip
Add TUXEDO OS to mach bootstrap (#30363)
Signed-off-by: Carlos Bentzen <cadubentzen@gmail.com>
Diffstat (limited to 'python/servo/platform')
-rw-r--r--python/servo/platform/linux.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/platform/linux.py b/python/servo/platform/linux.py
index 0cb17689bff..04b32eb7339 100644
--- a/python/servo/platform/linux.py
+++ b/python/servo/platform/linux.py
@@ -65,7 +65,7 @@ class Linux(Base):
distrib = distro.name()
version = distro.version()
- if distrib in ['LinuxMint', 'Linux Mint', 'KDE neon', 'Pop!_OS']:
+ if distrib in ['LinuxMint', 'Linux Mint', 'KDE neon', 'Pop!_OS', 'TUXEDO OS']:
if '.' in version:
major, _ = version.split('.', 1)
else: