fixed error

This commit is contained in:
Brian Carrier 2018-03-14 12:42:11 -04:00
parent 05bef8b8cd
commit 29dfde8d7b

View File

@ -38,9 +38,7 @@ if [ -f "$sleuthkit_jar_filepath" ]; then
exit 1 exit 1
else else
cp $sleuthkit_jar_filepath $ext_jar_filepath cp $sleuthkit_jar_filepath $ext_jar_filepath
if [ "$?" -eq 0 ]; then # checking copy operation was successful if [ "$?" -ne 0 ]; then # checking copy operation was successful
# echo "Successfully copied $sleuthkit_jar_filepath"
else
echo "exiting..." echo "exiting..."
exit 1 exit 1
fi fi