mirror of
https://github.com/aclist/dztui.git
synced 2025-04-05 12:03:00 +02:00
Hotfix for malformed paths
This commit is contained in:
parent
ade568c0e0
commit
64e87d35ad
1 changed files with 5 additions and 4 deletions
9
dzgui.sh
9
dzgui.sh
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
version=2.5.0
|
version=2.5.1
|
||||||
|
|
||||||
aid=221100
|
aid=221100
|
||||||
game="dayz"
|
game="dayz"
|
||||||
|
@ -196,8 +196,9 @@ file_picker(){
|
||||||
guess_path(){
|
guess_path(){
|
||||||
echo "# Checking for default DayZ path"
|
echo "# Checking for default DayZ path"
|
||||||
path=$(find $HOME -type d -regex ".*/steamapps/common/DayZ$" -print -quit)
|
path=$(find $HOME -type d -regex ".*/steamapps/common/DayZ$" -print -quit)
|
||||||
if [[ -n $path ]]; then
|
if [[ -n "$path" ]]; then
|
||||||
steam_path="$path"
|
clean_path=$(echo -e "$path" | awk -F"/steamapps" '{print $1}')
|
||||||
|
steam_path="$clean_path"
|
||||||
else
|
else
|
||||||
echo "# Searching for alternate DayZ path. This may take some time."
|
echo "# Searching for alternate DayZ path. This may take some time."
|
||||||
path=$(find / -type d \( -path "/proc" -o -path "*/timeshift" -o -path "/tmp" -o -path "/usr" -o -path "/boot" -o -path "/proc" -o -path "/root" -o -path "/run" -o -path "/sys" -o -path "/etc" -o -path "/var" -o -path "/run" -o -path "/lost+found" \) -prune -o -regex ".*/steamapps/common/DayZ$" -print -quit 2>/dev/null)
|
path=$(find / -type d \( -path "/proc" -o -path "*/timeshift" -o -path "/tmp" -o -path "/usr" -o -path "/boot" -o -path "/proc" -o -path "/root" -o -path "/run" -o -path "/sys" -o -path "/etc" -o -path "/var" -o -path "/run" -o -path "/lost+found" \) -prune -o -regex ".*/steamapps/common/DayZ$" -print -quit 2>/dev/null)
|
||||||
|
@ -250,7 +251,7 @@ err(){
|
||||||
varcheck(){
|
varcheck(){
|
||||||
[[ -z $api_key ]] && (err "Error in key: 'api_key'")
|
[[ -z $api_key ]] && (err "Error in key: 'api_key'")
|
||||||
[[ -z $whitelist ]] && (err "Error in key: 'whitelist'")
|
[[ -z $whitelist ]] && (err "Error in key: 'whitelist'")
|
||||||
[[ ! -d $game_dir ]] && (err "Malformed game path")
|
[[ ! -d "$game_dir" ]] && (err "Malformed game path")
|
||||||
[[ $whitelist =~ [[:space:]] ]] && (err "Separate whitelist values with commas")
|
[[ $whitelist =~ [[:space:]] ]] && (err "Separate whitelist values with commas")
|
||||||
}
|
}
|
||||||
run_depcheck() {
|
run_depcheck() {
|
||||||
|
|
Loading…
Reference in a new issue