Improve debug messages

This commit is contained in:
the-sane 2021-01-16 14:07:44 -05:00 committed by GitHub
parent 8e6fe1225d
commit d2983fa519
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -689,7 +689,7 @@ rm_shaders() {
# Delete the shader directory # 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 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" rm -r "$shaders_dir"
debug_echo continue "Done." debug_echo continue "Done."
message info "Your shaders have been deleted!" message info "Your shaders have been deleted!"
@ -716,7 +716,7 @@ rm_vidcache() {
# Delete the cache file # 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 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" rm "$dxvk_cache"
debug_echo continue "Done." debug_echo continue "Done."
message info "Your DXVK cache has been deleted!" message info "Your DXVK cache has been deleted!"