From d2983fa519eb37fdcdba8c0133242e1a8eb847cd Mon Sep 17 00:00:00 2001 From: the-sane <3657071+the-sane@users.noreply.github.com> Date: Sat, 16 Jan 2021 14:07:44 -0500 Subject: [PATCH] Improve debug messages --- lug-helper.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lug-helper.sh b/lug-helper.sh index 6fbc9ed..b414cb0 100755 --- a/lug-helper.sh +++ b/lug-helper.sh @@ -689,7 +689,7 @@ rm_shaders() { # Delete the shader directory if message question "This helper will delete the following directory:\n\n$shaders_dir\n\nDo you want to proceed?"; then - debug_echo continue "Deleting shaders..." + debug_echo continue "Deleting $shaders_dir..." rm -r "$shaders_dir" debug_echo continue "Done." message info "Your shaders have been deleted!" @@ -716,7 +716,7 @@ rm_vidcache() { # Delete the cache file if message question "This helper will delete the following file:\n\n$dxvk_cache\n\nDo you want to proceed?"; then - debug_echo continue "Deleting DXVK cache..." + debug_echo continue "Deleting $dxvk_cache..." rm "$dxvk_cache" debug_echo continue "Done." message info "Your DXVK cache has been deleted!"