mirror of
https://github.com/aclist/dztui.git
synced 2024-12-29 13:52:03 +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
|
- Custom query API
|
||||||
- Standardize dialogs
|
- 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
|
## [3.3.0-rc.22] 2023-05-10
|
||||||
### Changed
|
### Changed
|
||||||
- Display canonical dir name of mods in list installed mods menu
|
- Display canonical dir name of mods in list installed mods menu
|
||||||
|
|
3
dzgui.sh
3
dzgui.sh
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
version=3.3.0-rc.23
|
version=3.3.0-rc.24
|
||||||
|
|
||||||
aid=221100
|
aid=221100
|
||||||
game="dayz"
|
game="dayz"
|
||||||
|
@ -1801,6 +1801,7 @@ while true; do
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
lock(){
|
lock(){
|
||||||
|
[[ ! -d $config_path ]] && return
|
||||||
if [[ ! -f ${config_path}.lockfile ]]; then
|
if [[ ! -f ${config_path}.lockfile ]]; then
|
||||||
touch ${config_path}.lockfile
|
touch ${config_path}.lockfile
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue