From dd04911e81a8e088fee7708f66b56d3c004a0d01 Mon Sep 17 00:00:00 2001
From: CanbiZ <47820557+MickLesk@users.noreply.github.com>
Date: Mon, 3 Nov 2025 11:22:51 +0100
Subject: [PATCH] Update asterisk-install.sh
---
install/asterisk-install.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/install/asterisk-install.sh b/install/asterisk-install.sh
index 20d5214ea..d6307c288 100644
--- a/install/asterisk-install.sh
+++ b/install/asterisk-install.sh
@@ -18,7 +18,7 @@ html=$(curl -fsSL "$ASTERISK_VERSIONS_URL")
LTS_VERSION=""
for major in 20 22 24 26; do
- block=$(echo "$html" | awk "/Asterisk $major - LTS/,/
/")
+ block=$(echo "$html" | awk "/Asterisk $major - LTS/,//" || true)
ver=$(echo "$block" | grep -oE 'Download Latest - [0-9]+\.[0-9]+(\.[0-9]+)?' | head -n1 | sed -E 's/.* - //' || true)
if [ -n "$ver" ]; then
LTS_VERSION="$LTS_VERSION $ver"
@@ -29,7 +29,7 @@ LTS_VERSION=$(echo "$LTS_VERSION" | xargs | tr ' ' '\n' | sort -V | tail -n1)
STD_VERSION=""
for major in 21 23 25 27; do
- block=$(echo "$html" | grep -A 20 "Asterisk $major" | head -n 20)
+ block=$(echo "$html" | grep -A 20 "Asterisk $major" | head -n 20 || true)
ver=$(echo "$block" | grep -oE 'Download (Latest - )?'"$major"'\.[0-9]+\.[0-9]+' | head -n1 | sed -E 's/Download (Latest - )?//' || true)
if [ -n "$ver" ]; then
STD_VERSION="$STD_VERSION $ver"