diff options
-rwxr-xr-x | checkVersions | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/checkVersions b/checkVersions index 5f74ffa0..d39bb620 100755 --- a/checkVersions +++ b/checkVersions @@ -427,8 +427,12 @@ then grep -q '^git://anonscm\.debian\.org/\|^git\(+https\?\)\?://git\(hub\.com\|\.archlinux32\.org\)/.*#tag=' then src="${src#git+}" + src="${src%#*}" remVer=$( - git ls-remote --tags "${src%#*}" | \ + { + git ls-remote --tags "${src}" 2>/dev/null || \ + git ls-remote --tags "${src//git.archlinux32.org\/archlinux32\//git2.archlinux32.org/Archlinux32/}" 2>/dev/null + } | \ awk '{print $2}' | \ sed ' s|^refs/tags/'"$( |