From d4e81793e167cb0ea7ccd74d04f739318f8bc8fa Mon Sep 17 00:00:00 2001 From: the-sane <3657071+the-sane@users.noreply.github.com> Date: Thu, 10 Oct 2024 14:27:53 -0400 Subject: [PATCH] Clarify error messages --- lug-helper.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lug-helper.sh b/lug-helper.sh index f835d47..6a236d9 100755 --- a/lug-helper.sh +++ b/lug-helper.sh @@ -2522,12 +2522,12 @@ install_game_lutris() { # Check if Lutris is installed lutris_detect if [ "$lutris_installed" = "false" ]; then - message warning "Lutris is required but does not appear to be installed." + message error "Lutris is required but does not appear to be installed." return 1 fi # Check if the install script exists if [ ! -f "$lutris_install_script" ]; then - message warning "Lutris install script not found!\n\n$lutris_install_script\n\nIt is included in our official releases here:\n$releases_url" + message error "Lutris install script not found! Unable to proceed.\n\n$lutris_install_script\n\nIt is included in our official releases here:\n$releases_url" return 1 fi @@ -2589,7 +2589,7 @@ install_game_wine() { fi # Check if the install script exists if [ ! -f "$wine_launch_script" ]; then - message warning "Game launch script not found!\n\n$wine_launch_script\n\nIt is included in our official releases here:\n$releases_url" + message error "Game launch script not found! Unable to proceed.\n\n$wine_launch_script\n\nIt is included in our official releases here:\n$releases_url" return 1 fi