From e4f86049312db1e75c0eeef8690cb945fdfe43f4 Mon Sep 17 00:00:00 2001 From: Gautham Varma K <43441192+GauthamVarmaK@users.noreply.github.com> Date: Sat, 19 Jun 2021 09:52:42 +0530 Subject: [PATCH] Upgrade Dependencies before installing Streamlink To try fix cyclic dependency version issues when installing musl and gcc --- tvheadend/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tvheadend/run.sh b/tvheadend/run.sh index 92ac8b3..ac48309 100644 --- a/tvheadend/run.sh +++ b/tvheadend/run.sh @@ -51,7 +51,7 @@ streamlink_install () { bashio::log.info '[StreamLink] APK: Updating pkg list.' if apk update; then bashio::log.info '[StreamLink] APK: Installing required packages.' - if apk add --no-cache py3-pip && apk add --no-cache --virtual .build-deps gcc musl-dev; then + if apk upgrade && apk add --no-cache py3-pip && apk add --no-cache --virtual .build-deps gcc musl-dev; then bashio::log.info '[StreamLink] PIP3: Updating and installing required packages.' if ! pip3 install --no-cache --upgrade setuptools; then bashio::log.error '[StreamLink] PIP3: Error while upgrading setuptools.'; fi if ! pip3 install --no-cache streamlink; then bashio::log.error '[StreamLink] PIP3: Error while installing Streamlink.'; fi