From 41f38896ccebd1dac316f5c2161e2dc460db9d4b Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Sat, 8 May 2021 12:24:51 -0400 Subject: [PATCH] Fixed a missing path problem in the update script for Revenge of the Undead. --- game-scripts/revenge-of-the-undead-update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game-scripts/revenge-of-the-undead-update.sh b/game-scripts/revenge-of-the-undead-update.sh index 70ee8b0..90db87a 100755 --- a/game-scripts/revenge-of-the-undead-update.sh +++ b/game-scripts/revenge-of-the-undead-update.sh @@ -43,7 +43,7 @@ cache="${XDG_CONFIG_HOME:-$HOME/.config}/storm-games/audiogame-manager/cache" url="https://ims-productions.com/downloads/rotu.zip" (rm -v "${cache}/rotu.zip" wget -O "${cache}/rotu.zip" "$url" || exit 1 -unzip -od "$HOME/.local/wine/revenge-of-the-undead/drive_c/Program Files" "${cache}/rotu.zip" +unzip -od "$HOME/.local/wine/revenge-of-the-undead/drive_c/Program Files/revenge of the undead" "${cache}/rotu.zip" find "$HOME/.local/wine/revenge-of-the-undead" -type f -name 'nvdaControllerClient32.dll' -exec rm -fv {} \; ) | dialog --progressbox "updating Revenge of the undead, please wait..." -1 -1 exit 0