mirror of
https://github.com/justinian/jsix.git
synced 2025-12-10 08:24:32 -08:00
7 lines
149 B
Batchfile
7 lines
149 B
Batchfile
@echo off
|
|
if exist C:\Windows\Sysnative\bash.exe (
|
|
C:\Windows\Sysnative\bash.exe -c "make %*"
|
|
) else (
|
|
C:\Windows\System32\bash.exe -c "make %*"
|
|
)
|