mirror of
https://github.com/servo/servo.git
synced 2025-08-04 05:00:08 +01:00
Auto merge of #23505 - Eijebong:check-python-version, r=jdm
Check for python's version in mach On archlinux, python 2 isn't installed by default and it leads to some really confusing error messages when running mach <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/23505) <!-- Reviewable:end -->
This commit is contained in:
commit
6e83856d7b
1 changed files with 7 additions and 0 deletions
7
mach
7
mach
|
@ -15,6 +15,13 @@ from __future__ import print_function, unicode_literals
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
# Check for the current python version as some users (especially on archlinux)
|
||||||
|
# may not have python 2 installed and their /bin/python binary symlinked to
|
||||||
|
# python 3.
|
||||||
|
if sys.version_info >= (3, 0):
|
||||||
|
print("mach does not support python 3, please install python 2")
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
|
||||||
def main(args):
|
def main(args):
|
||||||
topdir = os.path.abspath(os.path.dirname(sys.argv[0]))
|
topdir = os.path.abspath(os.path.dirname(sys.argv[0]))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue