From 402b22ea4526566060269a6b4b79159fa4dd7fe2 Mon Sep 17 00:00:00 2001 From: the-sane <3657071+the-sane@users.noreply.github.com> Date: Fri, 21 Oct 2022 23:45:15 -0400 Subject: [PATCH] Change message type to warning --- lug-helper.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lug-helper.sh b/lug-helper.sh index 78e401f..39b88a3 100755 --- a/lug-helper.sh +++ b/lug-helper.sh @@ -1543,7 +1543,7 @@ runner_manage() { missing_dir="false" for (( i=1; i<"${#download_dirs[@]}"; i=i+2 )); do if [ ! -d "${download_dirs[i]}" ]; then - message info "The following Lutris directory was not found. Unable to continue.\n\n${download_dirs[i]}" + message warning "The following Lutris directory was not found. Unable to continue.\n\n${download_dirs[i]}" missing_dir="true" fi done @@ -1598,7 +1598,7 @@ dxvk_manage() { missing_dir="false" for (( i=1; i<"${#download_dirs[@]}"; i=i+2 )); do if [ ! -d "${download_dirs[i]}" ]; then - message info "The following Lutris directory was not found. Unable to continue.\n\n${download_dirs[i]}" + message warning "The following Lutris directory was not found. Unable to continue.\n\n${download_dirs[i]}" missing_dir="true" fi done