From 78442ebcb7c33706d46bbf45b01ee484b2623d83 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Thu, 27 Oct 2022 16:51:00 -0400 Subject: [PATCH] Split package install for slapt-get into 2 commands. --- linux-game-manager.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/linux-game-manager.sh b/linux-game-manager.sh index bad0017..8f86370 100755 --- a/linux-game-manager.sh +++ b/linux-game-manager.sh @@ -518,7 +518,8 @@ case "${game}" in if command -v yay &> /dev/null ; then yay -Sy --noconfirm --sudoloop freedoom gzdoom elif command -v slapt-get &> /dev/null ; then - su -c slapt-get -i freedoom gzdoom + su -c slapt-get -i gzdoom + su -c slapt-get -i freedoom else dialog --backtitle "Linux Game Manager" --msgbox "No supported package managers found. Please install the freedoom and gzdoom packages manually." -1 -1 exit 0