mirror of
https://github.com/aclist/dztui.git
synced 2024-12-28 21:32:36 +01:00
Hotfix for duplicate mods
This commit is contained in:
parent
eea8b4b56a
commit
3ddf1b2ca5
2 changed files with 6 additions and 2 deletions
|
@ -5,6 +5,10 @@
|
|||
- Custom query API
|
||||
- Standardize dialogs
|
||||
|
||||
## [3.0.7] 2022-11-025
|
||||
### Fixed
|
||||
- Hotfix for server reporting multiple versions of same mod
|
||||
|
||||
## [3.0.6] 2022-11-09
|
||||
### Changed
|
||||
- More verbose logs
|
||||
|
|
4
dzgui.sh
4
dzgui.sh
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -o pipefail
|
||||
version=3.0.6
|
||||
version=3.0.7
|
||||
|
||||
aid=221100
|
||||
game="dayz"
|
||||
|
@ -749,7 +749,7 @@ server_modlist(){
|
|||
done
|
||||
}
|
||||
compare(){
|
||||
diff=$(comm -23 <(server_modlist | sort) <(installed_mods | sort))
|
||||
diff=$(comm -23 <(server_modlist | sort -u) <(installed_mods | sort))
|
||||
}
|
||||
|
||||
installed_mods(){
|
||||
|
|
Loading…
Reference in a new issue