0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2024-09-30 00:12:36 +02:00

Use the downloads index to get the latest version

This commit is contained in:
Tilo Spannagel 2017-06-06 15:24:08 +02:00
parent aa40fa7a75
commit d365e45c02
2 changed files with 8 additions and 8 deletions

View file

@ -40,11 +40,11 @@ join() {
echo "${out#$sep}"
}
latest=$(curl -fsSL 'https://nextcloud.com/changelog/' |tac|tac \
| grep -o "\(Version\|Release\)\s\+[[:digit:]]\+\(.[[:digit:]]\+\)\+" \
| awk '{ print $2 }' \
| sort -uV \
| tail -1)
latest=$( curl -fsSL 'https://download.nextcloud.com/server/releases/' |tac|tac| \
grep -oE 'nextcloud-[[:digit:]]+(.[[:digit:]]+)+' | \
grep -oE '[[:digit:]]+(.[[:digit:]]+)+' | \
sort -uV | \
tail -1 )
# Generate each of the tags.
versions=( */ )

View file

@ -11,10 +11,10 @@ function version_greater_or_equal() {
[[ "$(printf '%s\n' "$@" | sort -V | head -n 1)" != "$1" || "$1" == "$2" ]];
}
latests=( $(curl -sSL 'https://download.nextcloud.com/server/releases/' |tac|tac| \
grep -oE '>nextcloud-[[:digit:]]+(.[[:digit:]]+)+\.tar\.bz2<' | \
latests=( $( curl -fsSL 'https://download.nextcloud.com/server/releases/' |tac|tac| \
grep -oE 'nextcloud-[[:digit:]]+(.[[:digit:]]+)+' | \
grep -oE '[[:digit:]]+(.[[:digit:]]+)+' | \
sort -V ) )
sort -uV ) )
travisEnv=
for latest in "${latests[@]}"; do