sane-vpn: fix "regions" printing to print all regions

This commit is contained in:
Colin 2024-05-10 09:07:59 +00:00
parent 6f2ae56126
commit def5816003

View File

@ -110,7 +110,9 @@ usage() {
usageDescription
echo ""
echo "regions:"
echo "$vpns"
for v in "${vpns[@]}"; do
echo "- $v"
done
test -n "$rc" && exit "$rc"
}