diff --git a/unix_setup.sh b/unix_setup.sh index a1e24fdf9e8..93a98ae1bce 100755 --- a/unix_setup.sh +++ b/unix_setup.sh @@ -38,9 +38,7 @@ if [ -f "$sleuthkit_jar_filepath" ]; then exit 1 else cp $sleuthkit_jar_filepath $ext_jar_filepath - if [ "$?" -eq 0 ]; then # checking copy operation was successful - # echo "Successfully copied $sleuthkit_jar_filepath" - else + if [ "$?" -ne 0 ]; then # checking copy operation was successful echo "exiting..." exit 1 fi