From bd3ff8fe724c7621b5a2129e1546cc45f5999db2 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Sun, 25 May 2025 11:13:45 -0400 Subject: [PATCH] Update update more asound.conf --- update | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/update b/update index 73223bdb..fb7f8c44 100755 --- a/update +++ b/update @@ -121,16 +121,16 @@ fi FILE=/etc/asound.conf if [ -f "$FILE" ]; then - if [[ $(diff /home/pi/CubeSatSim/asoundrc /etc/asound.conf) ]]; then + if [[ $(diff /home/pi/CubeSatSim/asound.conf /etc/asound.conf) ]]; then echo "changed /etc/asound.conf." - sudo cp /home/pi/CubeSatSim/asoundrc /etc/asound.conf + sudo cp /home/pi/CubeSatSim/asound.conf /etc/asound.conf FLAG=1 else echo "no change to /etc/asound.conf." fi else echo "creating /etc/asound.conf." - sudo cp /home/pi/CubeSatSim/asoundrc /etc/asound.conf + sudo cp /home/pi/CubeSatSim/asound.conf /etc/asound.conf FLAG=1 fi