From a47e7c48f01611bc32957def977131a55f31d45d Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sat, 22 Oct 2022 23:18:38 +0100 Subject: [PATCH] Correction https://github.com/alexbelgium/hassio-addons/issues/526 --- plex/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plex/Dockerfile b/plex/Dockerfile index d9650e70a..6a2321cea 100644 --- a/plex/Dockerfile +++ b/plex/Dockerfile @@ -32,7 +32,7 @@ ENV S6_CMD_WAIT_FOR_SERVICES=1 \ RUN \ # CORRECT PLEX CLAIM file=$(grep -sril 'Server claimed successfully' /etc) \ - && sed -i 's/bash/bashio/g' $file \ + && sed -i 's/with-contenv bash/with-contenv bashio/g' $file \ && sed -i '2iexport PLEX_CLAIM=$(bashio::config "claim")' $file \ && sed -i '3i[ $PLEX_CLAIM = "Get_from_https://www.plex.tv/claim" ] && bashio::log.warning "Please change the PLEX_CLAIM code from the options" && exit 1 || true' $file