From cd593a23ea0e947335aca95423ef077f00644310 Mon Sep 17 00:00:00 2001 From: Dan <46821332+nsadeveloper789@users.noreply.github.com> Date: Mon, 12 May 2025 18:06:14 +0000 Subject: [PATCH] GP-5656: Fix debilitating typo affecting installation layout. --- Ghidra/Debug/Debugger-rmi-trace/data/support/setuputils.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Ghidra/Debug/Debugger-rmi-trace/data/support/setuputils.sh b/Ghidra/Debug/Debugger-rmi-trace/data/support/setuputils.sh index 991c06505d..b1e9610e51 100644 --- a/Ghidra/Debug/Debugger-rmi-trace/data/support/setuputils.sh +++ b/Ghidra/Debug/Debugger-rmi-trace/data/support/setuputils.sh @@ -46,7 +46,7 @@ get-ghidra-version() { ghidra-module-pypath() { installed="$GHIDRA_HOME/Ghidra/$1/pypkg/src" - if [ -d "$instaled" ]; then + if [ -d "$installed" ]; then echo $installed return 0 fi @@ -66,7 +66,7 @@ ghidra-module-pypath() { ghidra-module-pydist() { installed="$GHIDRA_HOME/Ghidra/$1/pypkg/dist" - if [ -d "$instaled" ]; then + if [ -d "$installed" ]; then echo $installed return 0 fi