mirror of
https://github.com/luzifer-aur/gofumpt.git
synced 2024-11-08 11:00:07 +00:00
Fix detection for weird tags
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
8437ac7731
commit
bd7536e103
1 changed files with 8 additions and 7 deletions
|
@ -5,19 +5,20 @@ PKG=$(awk -F '=' '/^pkgname=/{ print $2 }' PKGBUILD)
|
||||||
|
|
||||||
# Get latest version
|
# Get latest version
|
||||||
VER=$(git ls-remote --tags --sort -v:refname https://github.com/mvdan/gofumpt.git |
|
VER=$(git ls-remote --tags --sort -v:refname https://github.com/mvdan/gofumpt.git |
|
||||||
head -n1 |
|
grep -E '/tags/v[0-9.]+$' |
|
||||||
grep -Eo '[0-9.]+$')
|
head -n1 |
|
||||||
|
grep -Eo '[0-9.]+$')
|
||||||
|
|
||||||
# Insert latest version into PKGBUILD and update hashes
|
# Insert latest version into PKGBUILD and update hashes
|
||||||
sed -i \
|
sed -i \
|
||||||
-e "s/^pkgver=.*/pkgver=${VER}/" \
|
-e "s/^pkgver=.*/pkgver=${VER}/" \
|
||||||
-e 's/pkgrel=.*/pkgrel=1/' \
|
-e 's/pkgrel=.*/pkgrel=1/' \
|
||||||
PKGBUILD
|
PKGBUILD
|
||||||
|
|
||||||
# Check whether this changed anything
|
# Check whether this changed anything
|
||||||
if (git diff --exit-code PKGBUILD); then
|
if (git diff --exit-code PKGBUILD); then
|
||||||
echo "Package ${PKG} has most recent version ${VER}"
|
echo "Package ${PKG} has most recent version ${VER}"
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
updpkgsums
|
updpkgsums
|
||||||
|
|
Loading…
Reference in a new issue