This commit is contained in:
Alexandre
2024-06-29 21:10:09 +02:00
committed by GitHub
parent 9fd4570f0e
commit 5af6a18054
3 changed files with 4 additions and 4 deletions

View File

@@ -1,5 +1,4 @@
## 0.13-59 (28-06-2024)
- Update latest upstream
- [FIX] : safeguard to avoid embedded pulseaudio interference
## 0.13-58 (27-06-2024)
- [UI] : Improved dark mode

View File

@@ -113,6 +113,6 @@
"udev": true,
"url": "https://github.com/alexbelgium/hassio-addons/tree/master/birdnet-pi",
"usb": true,
"version": "0.13-59",
"version": "0.13-60",
"video": true
}

View File

@@ -28,7 +28,8 @@ done
# Remove pulseaudio server to force using HA one
echo "... remove embedded pulseaudio"
for file in $(grep -srl "pulseaudio --start" $HOME/BirdNET-Pi/scripts); do
# shellcheck disable=SC2013
for file in $(grep -srl "pulseaudio --start" "$HOME"/BirdNET-Pi/scripts); do
sed -i "/pulseaudio --start/d" "$file"
done