Merge remote-tracking branch 'origin/Ghidra_11.4'

This commit is contained in:
Ryan Kurtz 2025-05-23 13:45:56 -04:00
commit 1a05e89206

View file

@ -31,12 +31,12 @@ fi
SCRIPT_FILE="$(readlink -f "$0" 2>/dev/null || readlink "$0" 2>/dev/null || echo "$0")"
SCRIPT_DIR="${SCRIPT_FILE%/*}"
if [! -e $SCRIPT_DIR/../ghidraRun]; then
if [ ! -e $SCRIPT_DIR/../ghidraRun ]; then
echo "ERROR: This script must be run on a built release of Ghidra."
exit 1
fi
if [! -e $SCRIPT_DIR/../Ghidra/application.properties]; then
if [ ! -e $SCRIPT_DIR/../Ghidra/application.properties ]; then
echo "ERROR: $SCRIPT_DIR/../Ghidra/application.properties does not exist. Dockerized Ghidra needs this file to get tagging information."
exit 1
fi