mirror of
https://github.com/aclist/dztui.git
synced 2024-12-29 13:52:03 +01:00
Bump version
This commit is contained in:
parent
667f5aff55
commit
d7220f8c12
1 changed files with 3 additions and 3 deletions
6
dzgui.sh
6
dzgui.sh
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
version=3.1.2
|
version=3.1.3
|
||||||
|
|
||||||
aid=221100
|
aid=221100
|
||||||
game="dayz"
|
game="dayz"
|
||||||
|
@ -225,7 +225,7 @@ freedesktop_dirs(){
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
find_library_folder(){
|
find_library_folder(){
|
||||||
steam_path=$(python $helpers_path/vdf2json.py -i $default_steam_path/steamapps/libraryfolders.vdf | jq -r '.libraryfolders[]|select(.apps|has("221100")).path')
|
steam_path=$(python3 $helpers_path/vdf2json.py -i $default_steam_path/steamapps/libraryfolders.vdf | jq -r '.libraryfolders[]|select(.apps|has("221100")).path')
|
||||||
}
|
}
|
||||||
file_picker(){
|
file_picker(){
|
||||||
while true; do
|
while true; do
|
||||||
|
@ -296,7 +296,7 @@ run_depcheck(){
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
check_pyver(){
|
check_pyver(){
|
||||||
pyver=$(python --version | awk '{print $2}')
|
pyver=$(python3 --version | awk '{print $2}')
|
||||||
if [[ -z $pyver ]] || [[ ${pyver:0:1} -lt 3 ]]; then
|
if [[ -z $pyver ]] || [[ ${pyver:0:1} -lt 3 ]]; then
|
||||||
warn "Requires python >=3.0" &&
|
warn "Requires python >=3.0" &&
|
||||||
exit
|
exit
|
||||||
|
|
Loading…
Reference in a new issue