Merge pull request #302 from kieraneglin/ke/dont-overwrite-deezer-tidal-config
[ENHANCEMENT] Stop startup script from overwriting Deemix and Tidal configs
This commit is contained in:
commit
32d14192f1
1 changed files with 12 additions and 0 deletions
|
@ -121,6 +121,18 @@ if [ ! -f /config/extended/beets-config-lidarr.yaml ]; then
|
|||
echo "Done"
|
||||
fi
|
||||
|
||||
if [ ! -f /config/extended/deemix_config.json ]; then
|
||||
echo "Download Deemix config..."
|
||||
curl "https://raw.githubusercontent.com/RandomNinjaAtk/arr-scripts/main/lidarr/deemix_config.json" -o /config/extended/deemix_config.json
|
||||
echo "Done"
|
||||
fi
|
||||
|
||||
if [ ! -f /config/extended/tidal-dl.json ]; then
|
||||
echo "Download Tidal config..."
|
||||
curl "https://raw.githubusercontent.com/RandomNinjaAtk/arr-scripts/main/lidarr/tidal-dl.json" -o /config/extended/tidal-dl.json
|
||||
echo "Done"
|
||||
fi
|
||||
|
||||
echo "Download Deemix config..."
|
||||
curl "https://raw.githubusercontent.com/RandomNinjaAtk/arr-scripts/main/lidarr/deemix_config.json" -o /config/extended/deemix_config.json
|
||||
echo "Done"
|
||||
|
|
Loading…
Reference in a new issue