mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 19:42:36 +02:00

scripts not being able to run correctly on Windows when an ampersand was in the path. Also fixed an issue with svrAdmin.bat and buildGhidraJar.bat not working if the Ghidra path contained a space.
11 lines
170 B
Batchfile
11 lines
170 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
rem Find the script directory
|
|
rem %~dsp0 is location of current script under NT
|
|
set "_REALPATH=%~dp0"
|
|
|
|
call "%_REALPATH%\ghidraSvr" uninstall
|
|
|
|
pause
|
|
|