mirror of
https://github.com/Fishwaldo/build.git
synced 2025-03-16 03:41:26 +00:00
Show release support status in menu for expert mode
This commit is contained in:
parent
82e5a27026
commit
5450c4ea3b
1 changed files with 3 additions and 1 deletions
|
@ -412,7 +412,9 @@ function distro_menu ()
|
|||
if [[ "${distro_support[$i]}" != "supported" && $EXPERT != "yes" ]]; then
|
||||
:
|
||||
else
|
||||
options+=("$i" "${distro_name[$i]}")
|
||||
local text=""
|
||||
[[ $EXPERT == "yes" ]] && local text="(${distro_support[$i]})"
|
||||
options+=("$i" "${distro_name[$i]} $text")
|
||||
fi
|
||||
DISTRIBUTION_STATUS=${distro_support[$i]}
|
||||
break
|
||||
|
|
Loading…
Add table
Reference in a new issue