Update package version to 1.37.0

This commit is contained in:
2025-09-10 14:24:31 +03:00
parent f48a5d9720
commit 3551127322
2 changed files with 13 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/bin/bash
# Git repository
REPO="git://busybox.net/busybox.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)
# Replace '_' with '.'
VERSION=${TAG_NAME//_/.}
echo "$VERSION"