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