diff options
Diffstat (limited to 'checkVersions')
-rwxr-xr-x | checkVersions | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/checkVersions b/checkVersions index 3a2a8cdb..cecbaae5 100755 --- a/checkVersions +++ b/checkVersions @@ -108,10 +108,10 @@ then elif [ "${pkgname}" == "dropbox" ] then remVer="$( - curl "https://www.dropbox.com/release_notes/rss.xml" 2> /dev/null | \ - sed 's|</\?title>|\n|g' | \ - grep '^[^<>]*New Stable Build: [0-9.-]\+$' | \ - sed 's|^[^<>]*New Stable Build: \([0-9.-]\+\)$|\1|' | \ + curl 'https://www.dropboxforum.com/t5/Desktop-client-builds/bd-p/101003016' 2> /dev/null | \ + tr '<>' '\n' | \ + grep '^Stable Build [0-9.-]\+$' | \ + sed 's|^Stable Build \([0-9.-]\+\)$|\1|' | \ sort -V | \ tail -n1 )" |