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:
parent
046a617b62
commit
d4c0dd4031
2 changed files with 12 additions and 1 deletions
10
changelog.md
10
changelog.md
|
@ -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
|
||||
|
|
3
dzgui.sh
3
dzgui.sh
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue