summaryrefslogtreecommitdiffstats
path: root/update.sh
diff options
context:
space:
mode:
authorJ0WI <J0WI@users.noreply.github.com>2021-02-09 17:13:40 +0000
committerGitHub <noreply@github.com>2021-02-09 17:13:40 +0000
commit90f09c70ede1ab754e3e882b1163843601ca4461 (patch)
tree8a4d42ac0d81b441bef74ef6575a7253fecbc75a /update.sh
parent90b6e28f9e67ef8dda11f76a313b755cc9d51551 (diff)
Nextcloud 18 EOL (#1377)
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
Diffstat (limited to 'update.sh')
-rwxr-xr-xupdate.sh13
1 files changed, 1 insertions, 12 deletions
diff --git a/update.sh b/update.sh
index fcf28ed8..00cb2efe 100755
--- a/update.sh
+++ b/update.sh
@@ -3,7 +3,6 @@ set -eo pipefail
declare -A php_version=(
[default]='7.4'
- [18.0]='7.3'
)
declare -A cmd=(
@@ -77,7 +76,7 @@ variants=(
fpm-alpine
)
-min_version='18.0'
+min_version='19.0'
# version_greater_or_equal A B returns whether A >= B
function version_greater_or_equal() {
@@ -142,16 +141,6 @@ function create_variant() {
;;
esac
- case "$version" in
- 18.* )
- sed -ri -e '
- \@bcmath@d;
- s/'"redis-${pecl_versions[redis]}"'/redis-4.3.0/g;
- ' "$dir/Dockerfile"
- ;;
-
- esac
-
# Copy the shell scripts
for name in entrypoint cron; do
cp "docker-$name.sh" "$dir/$name.sh"