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>
This commit is contained in:
Dominic Cooney 2021-05-22 17:53:10 +09:00
parent a6ab7c77e5
commit aa3359dc9e

View file

@ -4,5 +4,5 @@ where /Q py.exe
IF %ERRORLEVEL% NEQ 0 (
python mach %*
) ELSE (
py -2 mach %*
py -3 mach %*
)