mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
8 lines
95 B
Batchfile
8 lines
95 B
Batchfile
@echo off
|
|
|
|
where /Q py.exe
|
|
IF %ERRORLEVEL% NEQ 0 (
|
|
python mach %*
|
|
) ELSE (
|
|
py -2 mach %*
|
|
)
|