diff options
Diffstat (limited to 'checkVersions')
-rwxr-xr-x | checkVersions | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/checkVersions b/checkVersions index 2edc4bc7..80e0f2d3 100755 --- a/checkVersions +++ b/checkVersions @@ -142,6 +142,15 @@ then sort -V | \ tail -n1 )" + elif [ "${pkgname}" == "archiso32" ] + then + git -C /usr/src/archlinux/archiso fetch upstream + remVer="$( + git -C /usr/src/archlinux/archiso archive --format=tar upstream/master | \ + tar -Ox Makefile | \ + grep -m1 '^V=[0-9]\+$' | \ + cut -d= -f2 + )" elif echo "${src}" | \ grep -q "//www\.mpich\.org/" then |