1
0
Fork 0
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:
aclist 2022-11-26 08:16:09 +09:00
parent eea8b4b56a
commit 3ddf1b2ca5
2 changed files with 6 additions and 2 deletions

View file

@ -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

View file

@ -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(){