From 4b16c021d9f2660df4a2b04be34cb658c2c1f6dc Mon Sep 17 00:00:00 2001 From: Matthew Saunders Brown Date: Fri, 23 Apr 2021 13:29:08 -0700 Subject: [PATCH] removed echo debugging --- bashup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bashup.sh b/bashup.sh index 052c17d..16282d1 100755 --- a/bashup.sh +++ b/bashup.sh @@ -143,13 +143,13 @@ function bashup::remove_expired_backups () { if [[ -d $backup_storage_dir/$existing_backup/$directory ]]; then - echo rm -r $backup_storage_dir/$existing_backup/$directory + rm -r $backup_storage_dir/$existing_backup/$directory fi if [[ -z "$(ls -A $backup_storage_dir/$existing_backup)" ]]; then - echo rm -r $backup_storage_dir/$existing_backup + rm -r $backup_storage_dir/$existing_backup fi