Initial commit

This commit is contained in:
2025-08-22 13:56:17 +03:00
commit 4774d7bc10
4 changed files with 54 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
#!/bin/bash
# Git repository
REPO="git://git.kernel.org/pub/scm/bluetooth/sbc.git"
# Get tag name using 'git ls-remote'
VERSION=$(git ls-remote --exit-code --refs --tags --sort='v:refname' "$REPO" | tail -1 | cut -d'/' -f3)
echo "$VERSION"