mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +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 %*
|
|
)
|