Initial commit

This commit is contained in:
2025-11-12 13:05:37 +02:00
commit 493f8cc1f5
4 changed files with 56 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
#!/bin/bash
# Git repository
REPO="https://git.kernel.org/pub/scm/libs/ell/ell.git"
# Get tag name using 'git ls-remote'
TAG_NAME=$(git ls-remote --exit-code --refs --tags --sort='v:refname' "$REPO" | tail -1 | cut -d'/' -f3)
echo "$TAG_NAME"