Added message to inform user that backup was deleted

This commit is contained in:
Tristan Ancelet 2024-05-26 14:07:40 -05:00
parent 6b9260af43
commit 7af27cdb72

View File

@ -711,10 +711,13 @@ def delete_entry (bucket)
puts "Corresponding Entry: #{entry.info}"
if get_verification "Are you sure you want to delete BucketEntry[#{entry.hash}]? "
if get_verification "This cannot be undone. Are you sure you want to continue?: "
entry.delete
if entry.delete
puts "Ok. BucketEntry[#{entry.hash}] Has been deleted"
end
end
end
end
# END: Work Functions