Added script to update revenge of the undead because it's auto update feature fails hard core even on Windows.

This commit is contained in:
Storm Dragon 2020-12-14 00:09:01 -05:00
parent a0c9bbb087
commit 7503379215

View File

@ -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