From 992523dbce0524be23dde676670cdf98550760b4 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Sat, 5 Nov 2022 15:48:22 -0400 Subject: [PATCH] Fix up paths on dnf systems, e.g. fedora. --- linux-game-manager.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/linux-game-manager.sh b/linux-game-manager.sh index fee05d2..e801f01 100755 --- a/linux-game-manager.sh +++ b/linux-game-manager.sh @@ -522,6 +522,8 @@ case "${game}" in elif command -v dnf &> /dev/null ; then sudo dnf copr enable nalika/gzdoom sudo dnf -q -y install freedoom gzdoom + sudo mkdir -p /usr/share/games + sudo ln -s /usr/share/doom /usr/share/games/doom else dialog --backtitle "Linux Game Manager" --msgbox "No supported package managers found. Please install the freedoom and gzdoom packages manually." -1 -1 exit 0