Skip to content

Commit

Permalink
Bug 581667: ParseHeapDump.bat fails to run on Windows
Browse files Browse the repository at this point in the history
Cope with update to 1.14.0 from 1.13.0 etc.

Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=581667
Change-Id: I646f07d4c712e3c412cacb01db46b7b7249f0427
  • Loading branch information
ajohnson1 committed Mar 20, 2023
1 parent 64012e7 commit 47a32ec
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,7 @@ REM
set _DIRNAME=.\
if "%OS%" == "Windows_NT" set _DIRNAME=%~dp0%

"%_DIRNAME%\MemoryAnalyzerc.exe" --launcher.ini "%_DIRNAME%\MemoryAnalyzer.ini" -consoleLog -nosplash -application org.eclipse.mat.api.parse %*
set _MATCMD=MemoryAnalyzerc.exe
if not exist "%_DIRNAME%%_MATCMD%" (if exist "%_DIRNAME%eclipsec.exe" set _MATCMD=eclipsec.exe)

"%_DIRNAME%%_MATCMD%" --launcher.ini "%_DIRNAME%\MemoryAnalyzer.ini" -consoleLog -nosplash -application org.eclipse.mat.api.parse %*

0 comments on commit 47a32ec

Please sign in to comment.