Skip to content

Commit d5b547e

Browse files
authored
added || true after pip install/changed alpine link to point to dontnet8-runtime
added || true after pip install to ensure the script continues if there are failures. Alpine removed dotnet7-runtime.
1 parent fdbd448 commit d5b547e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

radarr/setup.bash

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,14 @@ touch ${SMA_PATH}/config/sma.log && \
4848
chgrp users ${SMA_PATH}/config/sma.log && \
4949
chmod g+w ${SMA_PATH}/config/sma.log && \
5050
echo "************ install pip dependencies ************" && \
51-
python3 -m pip install --break-system-packages --upgrade pip && \
52-
pip3 install --break-system-packages -r ${SMA_PATH}/setup/requirements.txt && \
51+
python3 -m pip install --break-system-packages --upgrade pip && \
52+
pip3 install --break-system-packages -r ${SMA_PATH}/setup/requirements.txt || true
5353
echo "************ install recyclarr ************" && \
5454
mkdir -p /recyclarr && \
5555
wget "https://github.com/recyclarr/recyclarr/releases/latest/download/recyclarr-linux-musl-x64.tar.xz" -O "/recyclarr/recyclarr.tar.xz" && \
5656
tar -xf /recyclarr/recyclarr.tar.xz -C /recyclarr &>/dev/null && \
5757
chmod 777 /recyclarr/recyclarr
58-
apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/community dotnet7-runtime
58+
apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/community dotnet8-runtime
5959

6060
mkdir -p /custom-services.d
6161
echo "Download QueueCleaner service..."

0 commit comments

Comments
 (0)