blob: 83eed238cfc62563a81367d2389821f939a6d17a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
@ECHO OFF
PUSHD %~dp0\..
CALL vswhere.bat x64 store
IF ERRORLEVEL 1 (
ECHO ERROR! bootstrap-addons.bat: Something went wrong when calling vswhere.bat
POPD
EXIT /B 1
)
CALL bootstrap-addons %*
POPD
|