From 51ffbd808c987582f7749b219260d6ef9d2f60cf Mon Sep 17 00:00:00 2001 From: Matan Sarsha Date: Sat, 31 Aug 2024 23:49:12 +0300 Subject: [PATCH] feat(scripts): exit node --- install/freegamesclaimer-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install/freegamesclaimer-install.sh b/install/freegamesclaimer-install.sh index 01474375..b8163438 100644 --- a/install/freegamesclaimer-install.sh +++ b/install/freegamesclaimer-install.sh @@ -80,7 +80,7 @@ CHOICES=$(whiptail --title "Select game services" --separate-output --checklist function setup_epic() { $STD node epic-games || success=false - if [ "$success" == false ]; then + if [ $success == false ]; then echo "epic failed" else msg_info "Creating daily cronjob for epic games" @@ -92,7 +92,7 @@ function setup_epic() { function setup_gog() { $STD node gog || success=false - if [ "$success" == false ]; then + if [ $success == false ]; then echo "gog failed" else msg_info "Creating daily cronjob for gog"