Skip to content
Snippets Groups Projects
Commit 29dfde8d authored by Brian Carrier's avatar Brian Carrier
Browse files

fixed error

parent 05bef8b8
No related branches found
No related tags found
No related merge requests found
...@@ -38,9 +38,7 @@ if [ -f "$sleuthkit_jar_filepath" ]; then ...@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment