We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3af447b commit 48c8caaCopy full SHA for 48c8caa
universal/services/Recyclarr
@@ -28,7 +28,7 @@ verifyConfig () {
28
fi
29
}
30
31
-RecyclarrProcess () {
+RecyclarrProcess () {
32
# Configure Yaml with URL and API Key
33
sed -i "s%arrUrl%$arrUrl%g" "/config/extended/recyclarr.yaml"
34
sed -i "s%arrApi%$arrApiKey%g" "/config/extended/recyclarr.yaml"
@@ -41,7 +41,7 @@ RecyclarrProcess () {
41
42
43
# Run Recyclarr and capture the output
44
- /recyclarr/recyclarr sync -c $recyclarrConfig --app-data /config/extended/recyclarr-data 2>&1 | tee -a "/config/logs/$logFileName"
+ /recyclarr/recyclarr sync -c $recyclarrConfig --app-data /config/extended/recyclarr-data 2>&1 | while IFS= read -r line; do log "$line"; done
45
46
log "Complete"
47
0 commit comments