1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2024-12-28 21:32:36 +01:00

fix: return from lockfile function

This commit is contained in:
aclist 2023-05-11 10:28:19 +09:00
parent 046a617b62
commit d4c0dd4031
2 changed files with 12 additions and 1 deletions

View file

@ -5,6 +5,16 @@
- Custom query API
- Standardize dialogs
## [3.3.0-rc.24] 2023-05-10
### Fixed
- Return from lockfile function if first time setup is not complete
## [3.3.0-rc.23] 2023-05-10
### Fixed
- Display correct players in-game count
### Changed
- Make file picker method more robust
## [3.3.0-rc.22] 2023-05-10
### Changed
- Display canonical dir name of mods in list installed mods menu

View file

@ -1,7 +1,7 @@
#!/bin/bash
set -o pipefail
version=3.3.0-rc.23
version=3.3.0-rc.24
aid=221100
game="dayz"
@ -1801,6 +1801,7 @@ while true; do
done
}
lock(){
[[ ! -d $config_path ]] && return
if [[ ! -f ${config_path}.lockfile ]]; then
touch ${config_path}.lockfile
fi