mirror of
https://github.com/aclist/dztui.git
synced 2024-12-29 13:52:03 +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
|
- Custom query API
|
||||||
- Standardize dialogs
|
- Standardize dialogs
|
||||||
|
|
||||||
|
## [3.0.7] 2022-11-025
|
||||||
|
### Fixed
|
||||||
|
- Hotfix for server reporting multiple versions of same mod
|
||||||
|
|
||||||
## [3.0.6] 2022-11-09
|
## [3.0.6] 2022-11-09
|
||||||
### Changed
|
### Changed
|
||||||
- More verbose logs
|
- More verbose logs
|
||||||
|
|
4
dzgui.sh
4
dzgui.sh
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
version=3.0.6
|
version=3.0.7
|
||||||
|
|
||||||
aid=221100
|
aid=221100
|
||||||
game="dayz"
|
game="dayz"
|
||||||
|
@ -749,7 +749,7 @@ server_modlist(){
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
compare(){
|
compare(){
|
||||||
diff=$(comm -23 <(server_modlist | sort) <(installed_mods | sort))
|
diff=$(comm -23 <(server_modlist | sort -u) <(installed_mods | sort))
|
||||||
}
|
}
|
||||||
|
|
||||||
installed_mods(){
|
installed_mods(){
|
||||||
|
|
Loading…
Reference in a new issue