Initial commit

This commit is contained in:
2026-04-17 15:19:29 +03:00
commit a03eb08849
5 changed files with 87 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
#!/bin/bash
# Git repository
REPO="https://git.dpkg.org/git/dpkg/dpkg.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"