From a279879b27ea8e0f64336a25cec7e4e0ee185cf3 Mon Sep 17 00:00:00 2001
From: panagiotisntinis <35654179+panagiotisntinis@users.noreply.github.com>
Date: Thu, 30 Apr 2020 19:47:16 +0300
Subject: [PATCH] fixing ext_jar_filepath

ext_jar_filepath=$PWD/autopsy/modules/ext/sleuthkit-$TSK_VERSION.jar;
---
 unix_setup.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/unix_setup.sh b/unix_setup.sh
index 9b6b383764..edd6c36632 100644
--- a/unix_setup.sh
+++ b/unix_setup.sh
@@ -55,7 +55,7 @@ else
     exit 1
 fi
 
-ext_jar_filepath="$PWD/autopsy/modules/ext/sleuthkit-postgresql-$TSK_VERSION.jar";
+ext_jar_filepath=$PWD/autopsy/modules/ext/sleuthkit-$TSK_VERSION.jar;
 echo -n "Copying sleuthkit-$TSK_VERSION.jar into the Autopsy directory..."
 rm -f "$ext_jar_filepath";
 if [ "$?" -gt 0 ]; then  #checking if remove operation failed
-- 
GitLab