13 lines
323 B
Bash
13 lines
323 B
Bash
#!/bin/bash
|
|
|
|
# Git repository
|
|
REPO="git://git.gnupg.org/gpgme.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 '^gpgme-[0-9]{1,}\.[0-9]{1,}\.[0-9]{1,}' | tail -n1)
|
|
|
|
# Trim prefix
|
|
VERSION=${TAG_NAME//gpgme-/}
|
|
|
|
echo "$VERSION"
|