From 7af27cdb7230b9090e565647302ebc2b2301c198 Mon Sep 17 00:00:00 2001 From: Tristan Ancelet Date: Sun, 26 May 2024 14:07:40 -0500 Subject: [PATCH] Added message to inform user that backup was deleted --- bucket-tool | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bucket-tool b/bucket-tool index 7256bb6..971daaf 100755 --- a/bucket-tool +++ b/bucket-tool @@ -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