1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2024-12-28 21:32:36 +01:00

Hotfix for #40

This commit is contained in:
aclist 2022-11-25 14:34:16 +09:00
parent c160d321cb
commit 5824f971bb
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.1.0-rc.16] 2022-11-25
### Fixed
- Hotfix for server modlists returning multiples of same mod
## [3.1.0-rc.15] 2022-11-24 ## [3.1.0-rc.15] 2022-11-24
### Fixed ### Fixed
- Faster path discovery on initial setup - Faster path discovery on initial setup

View file

@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
set -o pipefail set -o pipefail
version=3.1.0-rc.15 version=3.1.0-rc.16
aid=221100 aid=221100
game="dayz" game="dayz"
@ -814,7 +814,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(){