Split package install for slapt-get into 2 commands.

This commit is contained in:
Storm Dragon 2022-10-27 16:51:00 -04:00
parent 33439329cc
commit 78442ebcb7

View File

@ -518,7 +518,8 @@ case "${game}" in
if command -v yay &> /dev/null ; then if command -v yay &> /dev/null ; then
yay -Sy --noconfirm --sudoloop freedoom gzdoom yay -Sy --noconfirm --sudoloop freedoom gzdoom
elif command -v slapt-get &> /dev/null ; then 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 else
dialog --backtitle "Linux Game Manager" --msgbox "No supported package managers found. Please install the freedoom and gzdoom packages manually." -1 -1 dialog --backtitle "Linux Game Manager" --msgbox "No supported package managers found. Please install the freedoom and gzdoom packages manually." -1 -1
exit 0 exit 0