From 85f4d6460817cdabe420ef272bdce20dc1b2a92b Mon Sep 17 00:00:00 2001 From: the-sane <3657071+the-sane@users.noreply.github.com> Date: Mon, 2 Sep 2024 14:12:29 -0400 Subject: [PATCH] Fix if statement --- lug-helper.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lug-helper.sh b/lug-helper.sh index 9b302d3..586e7bf 100755 --- a/lug-helper.sh +++ b/lug-helper.sh @@ -2366,7 +2366,7 @@ install_game_lutris() { install_game_wine() { if message question "Before proceeding, be sure all Preflight Checks have passed!\n\nAre you ready to continue?"; then # Double check that wine is installed - if [ !-x "$(command -v wine)" ]; then + if [ ! -x "$(command -v wine)" ]; then message error "Wine does not appear to be installed.\nPlease refer to our Quick Start Guide:\n$lug_wiki" return 1 fi