mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-01-09 22:17:55 -05:00
GP-0 fix issue with docker build script
This commit is contained in:
@@ -31,12 +31,12 @@ fi
|
|||||||
SCRIPT_FILE="$(readlink -f "$0" 2>/dev/null || readlink "$0" 2>/dev/null || echo "$0")"
|
SCRIPT_FILE="$(readlink -f "$0" 2>/dev/null || readlink "$0" 2>/dev/null || echo "$0")"
|
||||||
SCRIPT_DIR="${SCRIPT_FILE%/*}"
|
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."
|
echo "ERROR: This script must be run on a built release of Ghidra."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
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."
|
echo "ERROR: $SCRIPT_DIR/../Ghidra/application.properties does not exist. Dockerized Ghidra needs this file to get tagging information."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|||||||
Reference in New Issue
Block a user