Update the alert function to show the actual guidance in a single acknowledgement dialog instead of a generic OK prompt followed by a separate message.
8 lines
437 B
Bash
8 lines
437 B
Bash
# shellcheck shell=bash disable=SC2154 # installPath and cache are set by linux-game-manager.sh
|
|
check_architecture x86_64
|
|
check_dependencies dmidecode
|
|
get_installer "upheaval-linux.zip" "https://leonegaming.itch.io/upheaval"
|
|
mkdir -p "${installPath}/Upheaval_Gui"
|
|
unzip -d "${installPath}/Upheaval_Gui" "${cache}/upheaval-linux.zip"
|
|
alert "Game Installer" "Game Installer" "To enable accessibility, press shift t when the game starts."
|