We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4040b84 commit 4614f15Copy full SHA for 4614f15
1 file changed
trixie
@@ -657,10 +657,10 @@ function conclusion() {
657
658
# Fallback to IPv6
659
if [[ -z "$local_ip" ]]; then
660
- local_ip=$(hostname --all-ip-address | tr ' ' '\n' | grep ":" | head -n1)
+ local_ip="[$(hostname --all-ip-address | tr ' ' '\n' | grep ":" | head -n1)]"
661
fi
662
if [[ -z "$global_ip" ]]; then
663
- global_ip=$(curl https://ipv6.yunohost.org 2>/dev/null || true)
+ global_ip="[$(curl https://ipv6.yunohost.org 2>/dev/null || true)]"
664
665
666
# Will ignore local ip if it's already the global IP (e.g. for some VPS)
0 commit comments