File tree Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -91,13 +91,17 @@ echo "Download SMA config..."
9191curl https://raw.githubusercontent.com/RandomNinjaAtk/arr-scripts/main/lidarr/sma.ini -o /config/extended/sma.ini
9292echo " Done"
9393
94- echo " Download Beets config..."
95- curl " https://raw.githubusercontent.com/RandomNinjaAtk/arr-scripts/main/lidarr/beets-config.yaml" -o /config/extended/beets-config.yaml
96- echo " Done"
94+ if [ ! -f /config/extended/beets-config.yaml ]; then
95+ echo " Download Beets config..."
96+ curl " https://raw.githubusercontent.com/RandomNinjaAtk/arr-scripts/main/lidarr/beets-config.yaml" -o /config/extended/beets-config.yaml
97+ echo " Done"
98+ fi
9799
98- echo " Download Beets lidarr config..."
99- curl " https://raw.githubusercontent.com/RandomNinjaAtk/arr-scripts/main/lidarr/beets-config-lidarr.yaml" -o /config/extended/beets-config-lidarr.yaml
100- echo " Done"
100+ if [ ! -f /config/extended/beets-config-lidarr.yaml ]; then
101+ echo " Download Beets lidarr config..."
102+ curl " https://raw.githubusercontent.com/RandomNinjaAtk/arr-scripts/main/lidarr/beets-config-lidarr.yaml" -o /config/extended/beets-config-lidarr.yaml
103+ echo " Done"
104+ fi
101105
102106echo " Download Deemix config..."
103107curl " https://raw.githubusercontent.com/RandomNinjaAtk/arr-scripts/main/lidarr/deemix_config.json" -o /config/extended/deemix_config.json
You can’t perform that action at this time.
0 commit comments