diff --git a/lidarr/ArtworkExtractor.bash b/lidarr/ArtworkExtractor.bash index 2f0c955..21b3fb0 100644 --- a/lidarr/ArtworkExtractor.bash +++ b/lidarr/ArtworkExtractor.bash @@ -1,5 +1,5 @@ #!/usr/bin/env bash -scriptVersion="1.0" +scriptVersion="1.1" scriptName="ArtworkExtractor" #### Import Settings @@ -43,11 +43,6 @@ else exit fi -if ls "$getFolderPath" | grep "lrc" | read; then - log "Processing :: $getAlbumFolderName :: Removing existing lrc files" - find "$getFolderPath" -type f -iname "*.lrc" -delete -fi - find "$getFolderPath" -type f -regex ".*/.*\.\(flac\|opus\|m4a\|mp3\)" -print0 | while IFS= read -r -d '' file; do fileName=$(basename -- "$file") fileExt="${fileName##*.}"