summaryrefslogtreecommitdiffstats
path: root/update.sh
diff options
context:
space:
mode:
authorJ0WI <J0WI@users.noreply.github.com>2020-06-04 22:03:30 +0000
committerGitHub <noreply@github.com>2020-06-04 22:03:30 +0000
commit0599d1022cc4e1192a19f1c8fcd83c6d195d6b96 (patch)
tree0139ca56655d770aa18fe5dd88433c71cc6d4dab /update.sh
parenta229b17bca928e95181e92e64d06427ccd15bb86 (diff)
Upgrade PHP Redis to 5.x for 19.0 (#1100)
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
Diffstat (limited to 'update.sh')
-rwxr-xr-xupdate.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/update.sh b/update.sh
index 918ac8b4..708f0ead 100755
--- a/update.sh
+++ b/update.sh
@@ -70,7 +70,7 @@ imagick_version="$(
declare -A pecl_versions=(
[APCu]="$apcu_version"
[memcached]="$memcached_version"
- [redis]="4.3.0"
+ [redis]="$redis_version"
[imagick]="$imagick_version"
)
@@ -151,6 +151,7 @@ function create_variant() {
16.*|17.*|18.* )
sed -ri -e '
\@bcmath@d;
+ s/'"redis-${pecl_versions[redis]}"'/redis-4.3.0/g;
' "$dir/Dockerfile"
;;