Updated to allow running in VSCode

This commit is contained in:
Justin C. Miller
2017-02-20 23:34:39 -08:00
parent e6dcdda6b9
commit 7bd6225164
2 changed files with 33 additions and 1 deletions

View File

@@ -1,2 +1,6 @@
@echo off
bash -c "make %*"
if exist C:\Windows\Sysnative\bash.exe (
C:\Windows\Sysnative\bash.exe -c "make %*"
) else (
C:\Windows\System32\bash.exe -c "make %*"
)