Skip to content

Commit 32d1419

Browse files
Merge pull request #302 from kieraneglin/ke/dont-overwrite-deezer-tidal-config
[ENHANCEMENT] Stop startup script from overwriting Deemix and Tidal configs
2 parents ae84972 + 132fa97 commit 32d1419

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

lidarr/setup.bash

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,18 @@ if [ ! -f /config/extended/beets-config-lidarr.yaml ]; then
121121
echo "Done"
122122
fi
123123

124+
if [ ! -f /config/extended/deemix_config.json ]; then
125+
echo "Download Deemix config..."
126+
curl "https://raw.githubusercontent.com/RandomNinjaAtk/arr-scripts/main/lidarr/deemix_config.json" -o /config/extended/deemix_config.json
127+
echo "Done"
128+
fi
129+
130+
if [ ! -f /config/extended/tidal-dl.json ]; then
131+
echo "Download Tidal config..."
132+
curl "https://raw.githubusercontent.com/RandomNinjaAtk/arr-scripts/main/lidarr/tidal-dl.json" -o /config/extended/tidal-dl.json
133+
echo "Done"
134+
fi
135+
124136
echo "Download Deemix config..."
125137
curl "https://raw.githubusercontent.com/RandomNinjaAtk/arr-scripts/main/lidarr/deemix_config.json" -o /config/extended/deemix_config.json
126138
echo "Done"

0 commit comments

Comments
 (0)