From 3edc93eb0bfc0e117ceb83c3575daf569e2286cd Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Tue, 15 Mar 2022 02:16:52 -0400 Subject: [PATCH] Fixed a bug that would return an error code with use of the -t flag. --- linux-game-manager.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/linux-game-manager.sh b/linux-game-manager.sh index 8da414a..da1fd7c 100755 --- a/linux-game-manager.sh +++ b/linux-game-manager.sh @@ -352,6 +352,7 @@ while getopts "${args}" i ; do t) dialog --backtitle "Linux Game Manager" \ --infobox "There are currently ${#gameList[@]} games available." -1 -1 + exit 0 ;; esac done