summaryrefslogtreecommitdiff
path: root/makefile/preflighting/win32/appvalidator.bat
blob: 0881d71afbe373b8bb0f36a0f43942ea9e2ce682 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@echo off

set wdir=%0\..


if EXIST %wdir%\motodevstudioc.exe (
	SET exe=motodevstudioc
) ELSE (
	SET exe=eclipsec
)

%wdir%\%exe% -nosplash --launcher.suppressErrors -nl en -application com.motorolamobility.preflighting.MOTODEVApplicationValidator %* -vmargs -Xms128m -Xmx512m -Declipse.exitdata=""

set err=%ERRORLEVEL%


echo.


EXIT /B %err%