fix: outdated version number in install script (#909)

Signed-off-by: thiswillbeyourgithub <26625900+thiswillbeyourgithub@users.noreply.github.com>
This commit is contained in:
Olicorne
2025-05-26 17:16:16 +02:00
committed by GitHub
parent f314c4ebc0
commit 3d29695ef0

View File

@@ -7,7 +7,7 @@ github_version() {
curl -s https://api.github.com/repos/mudler/edgevpn/releases/latest | \
grep tag_name | \
awk '{ print $2 }' | \
sed -e 's/\"//g' -e 's/,//g' || echo "v0.8.5"
sed -e 's/\"//g' -e 's/,//g' || echo "v30.2"
set -e
}