aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDominic Cooney <dominic.cooney@gmail.com>2021-05-22 17:53:10 +0900
committerDominic Cooney <dominic.cooney@gmail.com>2021-05-22 18:27:10 +0900
commitaa3359dc9e5195873d02a3ab41858d34c907b27c (patch)
tree7a08a020b2ac6debde6718b42cc5c464beaf36ac
parenta6ab7c77e51cb059fbe38a53d863546d8fdb9c61 (diff)
downloadservo-aa3359dc9e5195873d02a3ab41858d34c907b27c.tar.gz
servo-aa3359dc9e5195873d02a3ab41858d34c907b27c.zip
Make mach.bat request Python 3
The mach Python script no longer supports Python 2, so don't use Python 2. Fixes #28379 Signed-off-by: Dominic Cooney <dominic.cooney@gmail.com>
-rw-r--r--mach.bat2
1 files changed, 1 insertions, 1 deletions
diff --git a/mach.bat b/mach.bat
index 7258a0d79ce..2e76ecf92bc 100644
--- a/mach.bat
+++ b/mach.bat
@@ -4,5 +4,5 @@ where /Q py.exe
IF %ERRORLEVEL% NEQ 0 (
python mach %*
) ELSE (
- py -2 mach %*
+ py -3 mach %*
)