From 3d66c0f81060bb3b0769ce00d1751d4195c8e182 Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Mon, 7 Jan 2019 10:53:57 -0600 Subject: [PATCH] Update mysqlbu-scripts.sh --- mysqlbu-scripts.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mysqlbu-scripts.sh b/mysqlbu-scripts.sh index a1d8c0c..c395637 100755 --- a/mysqlbu-scripts.sh +++ b/mysqlbu-scripts.sh @@ -73,7 +73,8 @@ DELETE_BACKUP() { read -p "Are you sure you wish to DELETE this backup (y/n)?" choice case "$choice" in [Yy]) - rm -rf ${delbu} + rm -rf $delbu + echo "rm -rf $delbu" echo "" echo -e "${idsCL[LightRed]}Backup has been deleted${idsCL[Default]}" read -n 1 -s -p "Press any key to continue";;