diff options
Diffstat (limited to 'checkVersions')
-rwxr-xr-x | checkVersions | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/checkVersions b/checkVersions index a1282c76..019543c4 100755 --- a/checkVersions +++ b/checkVersions @@ -246,6 +246,24 @@ then tail -n1 )" elif echo "${src}" | \ + grep -q '//www\.abisource\.com/' + then + quVer="$( + echo "${src}" | \ + sed 's|\(/[^/]\+\)\{3\}$|/|' + )" + remVer="$( + curl_it "${quVer}" | \ + tr '<>' '\n' | \ + sed -n ' + s,^a href="\([0-9.]\+\)/"$,\1, + T + p + ' | \ + sort -V | \ + tail -n1 + )" + elif echo "${src}" | \ grep -q '//download\.virtualbox\.org/' then quVer="$( |