From 781bbd138f645b8b70362c5c92511c9fbe931d01 Mon Sep 17 00:00:00 2001 From: Barrett Clark Date: Wed, 1 Apr 2026 17:48:23 -0500 Subject: [PATCH] =?UTF-8?q?fixes=20#411=20[Lidarr]=20Fix=20BeetsTagger=20b?= =?UTF-8?q?roken=20pipe:=20find=20|=20read=20=E2=86=92=20find=20|=20grep?= =?UTF-8?q?=20-q=20.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lidarr/BeetsTagger.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lidarr/BeetsTagger.bash b/lidarr/BeetsTagger.bash index 73d1efe3..fd18e8d3 100644 --- a/lidarr/BeetsTagger.bash +++ b/lidarr/BeetsTagger.bash @@ -46,7 +46,7 @@ else fi ProcessWithBeets () { log "$1 :: Start Processing..." - if find "$1" -type f -iname "*.flac" | read; then + if find "$1" -type f -iname "*.flac" | grep -q .; then sleep 0.01 else log "$1 :: ERROR :: Only supports flac files, exiting..."