mirror of
https://github.com/aclist/dztui.git
synced 2025-04-05 20:13:00 +02:00
fix: error handling
This commit is contained in:
parent
38e1998721
commit
dc4e418540
1 changed files with 9 additions and 5 deletions
14
dzgui.sh
14
dzgui.sh
|
@ -2,7 +2,6 @@
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
|
|
||||||
version="4.2.0.rc-1"
|
version="4.2.0.rc-1"
|
||||||
src_path=$(realpath "$0")
|
|
||||||
|
|
||||||
#CONSTANTS
|
#CONSTANTS
|
||||||
aid=221100
|
aid=221100
|
||||||
|
@ -729,8 +728,9 @@ create_config(){
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
varcheck(){
|
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
|
if [[ ! -f $config_file ]]; then
|
||||||
local msg="Config file '$config_file' missing. Start first-time setup now?"
|
|
||||||
qdialog "$msg" "Yes" "Exit"
|
qdialog "$msg" "Yes" "Exit"
|
||||||
if [[ $? -eq 1 ]]; then
|
if [[ $? -eq 1 ]]; then
|
||||||
logger CRITICAL "Config file missing, but user aborted setup"
|
logger CRITICAL "Config file missing, but user aborted setup"
|
||||||
|
@ -742,9 +742,9 @@ varcheck(){
|
||||||
local workshop_dir="$steam_path/steamapps/workshop/content/$aid"
|
local workshop_dir="$steam_path/steamapps/workshop/content/$aid"
|
||||||
local game_dir="$steam_path/steamapps/common/DayZ"
|
local game_dir="$steam_path/steamapps/common/DayZ"
|
||||||
if [[ ! -d $steam_path ]] || [[ ! -d $game_dir ]]; then
|
if [[ ! -d $steam_path ]] || [[ ! -d $game_dir ]]; then
|
||||||
logger WARN "DayZ path resolved to $game_dir"
|
logger WARN "DayZ path resolved to '$game_dir'"
|
||||||
logger WARN "Workshop path resolved to $workshop_dir"
|
logger WARN "Workshop path resolved to '$workshop_dir'"
|
||||||
pdialog "$msg"
|
qdialog "$msg2" "Yes" "Exit"
|
||||||
if [[ $? -eq 1 ]]; then
|
if [[ $? -eq 1 ]]; then
|
||||||
logger CRITICAL "Malformed Steam path, but user aborted setup"
|
logger CRITICAL "Malformed Steam path, but user aborted setup"
|
||||||
exit 1
|
exit 1
|
||||||
|
@ -752,6 +752,10 @@ varcheck(){
|
||||||
create_config
|
create_config
|
||||||
return 0
|
return 0
|
||||||
fi
|
fi
|
||||||
|
if [[ $src_path != $(realpath "$0") ]]; then
|
||||||
|
src_path=$(realpath "$0")
|
||||||
|
update_config
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
is_dzg_downloading(){
|
is_dzg_downloading(){
|
||||||
if [[ -d $steam_path ]] && [[ -d $steam_path/downloading/$aid ]]; then
|
if [[ -d $steam_path ]] && [[ -d $steam_path/downloading/$aid ]]; then
|
||||||
|
|
Loading…
Reference in a new issue