1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2025-04-05 12:03:00 +02:00

Fix default Steam path prefix

This commit is contained in:
aclist 2022-06-17 09:15:39 +09:00 committed by GitHub
parent 8304eb0a53
commit a3026101e0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
set -o pipefail set -o pipefail
version=2.0.1 version=2.0.2
aid=221100 aid=221100
game="dayz" game="dayz"
workshop="https://steamcommunity.com/sharedfiles/filedetails/?id=" workshop="https://steamcommunity.com/sharedfiles/filedetails/?id="
@ -119,7 +119,7 @@ guess_path(){
echo "# Checking for default DayZ path" echo "# Checking for default DayZ path"
path=$(find $HOME -path "*.local/share/Steam/steamapps/common/DayZ" | wc -c) path=$(find $HOME -path "*.local/share/Steam/steamapps/common/DayZ" | wc -c)
if [[ ! $path -eq 0 ]]; then if [[ ! $path -eq 0 ]]; then
steam_path="$HOME/.local/share/Steam/steamapps/common/DayZ" steam_path="$HOME/.local/share/Steam"
else else
echo "# Searching for alternate DayZ path" echo "# Searching for alternate DayZ path"
path=$(find / -path "*/steamapps/common/DayZ" 2>/dev/null) path=$(find / -path "*/steamapps/common/DayZ" 2>/dev/null)