mirror of
https://github.com/aclist/dztui.git
synced 2025-04-04 19:43:00 +02:00
Prevent line splitting on modlist comparison
This commit is contained in:
parent
cf2555bf5a
commit
407ac4b87f
1 changed files with 6 additions and 1 deletions
7
dztui.sh
7
dztui.sh
|
@ -232,10 +232,15 @@ validate_mods(){
|
|||
tput cnorm
|
||||
printf "\n"
|
||||
}
|
||||
server_modlist(){
|
||||
for i in "${newlist[@]}"; do
|
||||
printf "$i\n"
|
||||
done
|
||||
}
|
||||
compare(){
|
||||
fetch_mods
|
||||
validate_mods
|
||||
diff=$(comm -23 <(echo -e "${newlist[@]}" | sort) <(installed_mods | sort))
|
||||
diff=$(comm -23 <(server_modlist | sort) <(installed_mods | sort))
|
||||
}
|
||||
connect(){
|
||||
compare
|
||||
|
|
Loading…
Reference in a new issue