Update upheaval to support both console version and the newly accessible gui version. Please reinstall which version you want to play with.
This commit is contained in:
14
.update/Upheaval-Commandline.sh
Executable file
14
.update/Upheaval-Commandline.sh
Executable file
@ -0,0 +1,14 @@
|
||||
run_update() {
|
||||
local installPath="${HOME}/.local/games"
|
||||
local gameName="upheaval-linux-console.zip"
|
||||
for i in ~/Downloads ~/Desktop ; do
|
||||
find $i -type f -name "$gameName" -exec mv -v {} "${cache}/" \;
|
||||
done
|
||||
# If the file is still not available abort.
|
||||
if [[ ! -f "${cache}/$gameName" ]]; then
|
||||
dialog --backtitle "Linux Game Manager" --msgbox "Couldn't find $gameName. Please download the file and try again." -1 -1
|
||||
exit 1
|
||||
fi
|
||||
mkdir -p "${installPath}/Upheaval_Commandline"
|
||||
unzip -od "${installPath}/Upheaval_Commandline" "${cache}/upheaval-linux-console.zip"
|
||||
}
|
Reference in New Issue
Block a user