From 75033792153ad0e3dc4dd93eaafc7e183d374dde Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Mon, 14 Dec 2020 00:09:01 -0500 Subject: [PATCH] Added script to update revenge of the undead because it's auto update feature fails hard core even on Windows. --- game-scripts/revenge-of-the-undead-update.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 game-scripts/revenge-of-the-undead-update.sh diff --git a/game-scripts/revenge-of-the-undead-update.sh b/game-scripts/revenge-of-the-undead-update.sh new file mode 100755 index 0000000..fcec8ee --- /dev/null +++ b/game-scripts/revenge-of-the-undead-update.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash + +cache="${XDG_CONFIG_HOME:-$HOME/.config}/storm-games/audiogame-manager/cache" +url="https://tunmi13.dev/projects/rotu.zip" +wget -o "${cache}/rotu.zip" "$url" || exit 1 +unzip -od "$HOME/.local/wine/drive_c/Program Files" "${cache}/rotu.zip" +rm -fv "$HOME/.local/wine/drive_c/Program Files/rotu/nvdaControllerClient32.dll" + +exit 0