Update package version to 2.9.0

This commit is contained in:
2025-09-08 21:47:29 +03:00
parent f131f3cf0a
commit 15f15d85b4
3 changed files with 14 additions and 9 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/bin/bash
# Git repository
REPO="https://git.kernel.org/pub/scm/linux/kernel/git/legion/kbd.git"
# Get tag name using 'git ls-remote'
TAG_NAME=$(git ls-remote --exit-code --refs --tags --sort='v:refname' "$REPO" | cut -d'/' -f3 | grep -E 'v[0-9]{1,}\.[0-9]{1,}(\.[0-9]{1,})?$' | tail -n1)
# Trim 'v' character in TAG_NAME variable
VERSION=$(echo "$TAG_NAME" | tr -d 'v')
echo "$VERSION"