Update package version to 5.4.8

This commit is contained in:
2025-09-18 16:13:19 +03:00
parent 14495a389b
commit f8f2be5438
3 changed files with 12 additions and 1 deletions
+8
View File
@@ -0,0 +1,8 @@
#!/bin/bash
URL="https://www.lua.org/download.html"
# Get version number from tag name
VERSION=$(curl -s -L "$URL" | grep -A1 'and its current release is' | grep -o -E '[0-9]{1,}\.[0-9]{1,}(\.[0-9]{1,})?' | head -n1)
echo "$VERSION"