-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMadExceptPatchExe.bat
60 lines (53 loc) · 1.42 KB
/
MadExceptPatchExe.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
REM CommandInterpreter: $(COMSPEC)
@echo off
rem Script name
set me=%~n0
rem Path to madExcept Tools
set MadExceptTools=%~1
set ExePath=%~2&set ExeDir=%~dp2&set ExeFileName=%~nx2
set MadExceptSettings=%~3
rem Check vars
if "%MadExceptTools%"=="" echo %me%: [ERROR] Argument MadExceptTools ^
not provided. Write path to madExcept Tools dir. & goto :usage
if "%ExePath%"=="" echo %me%: [ERROR] Argument ExePath not provided. ^
Write full path to Exe. & goto :usage
if "%MadExceptSettings%"=="" echo %me%: [ERROR] Argument MadExceptSettings ^
not provided. Write path to .mes file. & goto :usage
goto :patch
:usage
echo:
echo USAGE:
echo %~nx0 MadExceptTools ExePath MadExceptSettings
echo:
echo Example: %~nx0^
"%ProgramFiles%\madCollection\MadExcept\Tools"^
"C:\project\build\bin\MyApp.exe"^
"C:\project\Source\Projects\MyApp.mes"
set errorCode=2
goto :end
:patch
echo %me%: patching %ExePath%
echo:
IF NOT EXIST "%MadExceptTools%\madExceptPatch.exe" (
set ERRSTR=Patcher not found at %MadExceptTools%
goto error
)
rem MadExceptPatch has an internal check if .map file exists
echo Patching...
"%MadExceptTools%\madExceptPatch.exe" "%ExePath%" "%MadExceptSettings%"
IF ERRORLEVEL 1 (
set ErrorCode=1
goto error
)
echo:
echo %me%: OK
set ErrorCode=0
goto :end
:error
echo:
echo %me%: FAIL %ERRSTR%
echo:
goto :end
:end
popd
exit /b %ErrorCode%