mirror of
https://github.com/nextcloud/docker.git
synced 2025-02-03 01:58:27 +01:00
Fix regex for pecl prereleases (#1725)
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
This commit is contained in:
parent
71f4a94464
commit
e36ca5ff96
1 changed files with 2 additions and 2 deletions
|
@ -30,7 +30,7 @@ declare -A crontab_int=(
|
|||
apcu_version="$(
|
||||
git ls-remote --tags https://github.com/krakjoe/apcu.git \
|
||||
| cut -d/ -f3 \
|
||||
| grep -vE -- '-rc|-b' \
|
||||
| grep -viE -- 'rc|b' \
|
||||
| sed -E 's/^v//' \
|
||||
| sort -V \
|
||||
| tail -1
|
||||
|
@ -39,7 +39,7 @@ apcu_version="$(
|
|||
memcached_version="$(
|
||||
git ls-remote --tags https://github.com/php-memcached-dev/php-memcached.git \
|
||||
| cut -d/ -f3 \
|
||||
| grep -vE -- '-rc|-b' \
|
||||
| grep -viE -- 'rc|b' \
|
||||
| sed -E 's/^[rv]//' \
|
||||
| sort -V \
|
||||
| tail -1
|
||||
|
|
Loading…
Reference in a new issue