nicokaiser / rpi-audio-receiver

Raspberry Pi Audio Receiver with Bluetooth A2DP, AirPlay 2, and Spotify Connect
MIT License
1.37k stars 148 forks source link

Not installing snapcast causes installation stop early #78

Closed jens4Dev closed 3 years ago

jens4Dev commented 3 years ago

When you don't want to install snapcast, the install.sh script stops working because the install-snapcast-client.sh ends with exit 1 in that case. Like other script it need to end with 0: if [[ ! "$REPLY" =~ ^(yes|y|Y)$ ]]; then exit 0; fi

nicokaiser commented 3 years ago

Nice catch, thanks!