mirror of
https://github.com/servo/servo
synced 2026-05-09 16:42:16 +02:00
9 lines
95 B
Batchfile
9 lines
95 B
Batchfile
@echo off
|
|
|
|
where /Q py.exe
|
|
IF %ERRORLEVEL% NEQ 0 (
|
|
python mach %*
|
|
) ELSE (
|
|
py -2 mach %*
|
|
)
|