Update package version to 2.6.10

This commit is contained in:
2025-09-19 13:12:15 +03:00
parent 64e679f8a2
commit 7f68c02982
3 changed files with 15 additions and 2 deletions
+11
View File
@@ -0,0 +1,11 @@
#!/bin/bash
URL="https://www.openldap.org/software/download/"
# Get version number from tag name
VERSION=$(curl -s -L "$URL" | grep -o -E 'OpenLDAP-[0-9]{1,}\.[0-9]{1,}\.[0-9]{1,}')
# Trim prefix
VERSION=${VERSION//OpenLDAP-/}
echo "$VERSION"