From 5bc1dbba9d01b4d026414c8edd6c34f4b7df4175 Mon Sep 17 00:00:00 2001 From: stormdragon2976 Date: Thu, 8 Dec 2022 13:40:44 -0500 Subject: [PATCH] Check for updates on launch of Slay the Text. --- linux-game-manager.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/linux-game-manager.sh b/linux-game-manager.sh index 3aace38..8891a00 100755 --- a/linux-game-manager.sh +++ b/linux-game-manager.sh @@ -337,6 +337,7 @@ game_launcher() { ;; *"main.py") pushd "${game%/*}" + git pull -q python3 ${game} ;; *) @@ -566,10 +567,12 @@ case "${game}" in add_launcher "$(command -v gzdoom) ${doomPath}/TobyD2Deluxe.pk3" ;; "Monkey Spank") + check_dependencies python-pygame:pygame python-xdg:xdg python-pyperclip:pyperclip python-requests:requests python-setproctitle:setproctitle git -C "${installPath}" clone --recurse-submodules https://gitlab.com/stormdragon2976/monkeyspank.git add_launcher "${installPath}/monkeyspank/monkeyspank" ;; "Numnastics") + check_dependencies python-pygame:pygame python-xdg:xdg python-pyperclip:pyperclip python-requests:requests python-setproctitle:setproctitle git -C "${installPath}" clone --recurse-submodules https://gitlab.com/stormdragon2976/numnastics.git add_launcher "${installPath}/numnastics/numnastics" ;;