From 24912ec31cf91f680a525d543e0d41906cb8b5ab Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Sun, 13 Aug 2023 11:24:22 -0400 Subject: [PATCH] Update config fix sed typo --- config | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config b/config index 81502814..06d14d85 100755 --- a/config +++ b/config @@ -375,10 +375,10 @@ elif [ "$1" = "-T" ]; then echo if [ "$reset" = "y" ] || [ "$reset" = "yes" ] ; then - sudo sed -i 'False/True/g' /home/pi/CubeSatSim/command_tx + sudo sed -i 's/False/True/g' /home/pi/CubeSatSim/command_tx echo "Command state set to True to enable beacon" else - sudo sed -i 'True/False/g' /home/pi/CubeSatSim/command_tx + sudo sed -i 's/True/False/g' /home/pi/CubeSatSim/command_tx echo "Command state set to False to disable beacon" fi