rusefi/unit_tests/compile.bat

9 lines
172 B
Batchfile
Raw Normal View History

2020-06-18 20:14:05 -07:00
@echo off
sh.exe compile.sh || (
if exist C:\cygwin64 (
C:\cygwin64\bin\sh.exe compile.sh
) else (
if exist C:\cygwin ( C:\cygwin\bin\sh.exe compile.sh )
)
)