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:
parent
8304eb0a53
commit
a3026101e0
1 changed files with 2 additions and 2 deletions
4
dzgui.sh
4
dzgui.sh
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue