Merge pull request #413 from mlocati/ssl-alpine3.14

Fix installing SSL library on Alpine 3.14
pull/414/head 1.2.52
Michele Locati 2021-08-06 10:49:29 +02:00 committed by GitHub
commit 478d14d9b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -411,7 +411,12 @@ buildRequiredPackageLists() {
buildRequiredPackageLists_volatile=''
case "$DISTRO" in
alpine)
apk update
if test $DISTRO_VERSION_NUMBER = '3.14'; then
# https://gitlab.alpinelinux.org/alpine/aports/-/issues/12763#note_172090
apk -U upgrade
else
apk update
fi
;;
esac
case "$DISTRO_VERSION" in