From dc4e418540f7d557674214ee529e551c192dab23 Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Fri, 12 Jan 2024 15:32:16 +0900 Subject: [PATCH] fix: error handling --- dzgui.sh | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/dzgui.sh b/dzgui.sh index e738445..477a72a 100755 --- a/dzgui.sh +++ b/dzgui.sh @@ -2,7 +2,6 @@ set -o pipefail version="4.2.0.rc-1" -src_path=$(realpath "$0") #CONSTANTS aid=221100 @@ -729,8 +728,9 @@ create_config(){ done } varcheck(){ + local msg="Config file '$config_file' missing. Start first-time setup now?" + local msg2="The Steam paths set in your config file appear to be invalid. Restart first-time setup now?" if [[ ! -f $config_file ]]; then - local msg="Config file '$config_file' missing. Start first-time setup now?" qdialog "$msg" "Yes" "Exit" if [[ $? -eq 1 ]]; then logger CRITICAL "Config file missing, but user aborted setup" @@ -742,9 +742,9 @@ varcheck(){ local workshop_dir="$steam_path/steamapps/workshop/content/$aid" local game_dir="$steam_path/steamapps/common/DayZ" if [[ ! -d $steam_path ]] || [[ ! -d $game_dir ]]; then - logger WARN "DayZ path resolved to $game_dir" - logger WARN "Workshop path resolved to $workshop_dir" - pdialog "$msg" + logger WARN "DayZ path resolved to '$game_dir'" + logger WARN "Workshop path resolved to '$workshop_dir'" + qdialog "$msg2" "Yes" "Exit" if [[ $? -eq 1 ]]; then logger CRITICAL "Malformed Steam path, but user aborted setup" exit 1 @@ -752,6 +752,10 @@ varcheck(){ create_config return 0 fi + if [[ $src_path != $(realpath "$0") ]]; then + src_path=$(realpath "$0") + update_config + fi } is_dzg_downloading(){ if [[ -d $steam_path ]] && [[ -d $steam_path/downloading/$aid ]]; then