From e0562f052903c7f46a64f9f6e7ecf10629a6c6f6 Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Sun, 6 Jun 2021 15:55:11 -0400 Subject: [PATCH] fixed read for reboot --- install | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install b/install index 38d5e600..6e6f8ab5 100755 --- a/install +++ b/install @@ -154,9 +154,9 @@ CubeSatSim/config -c -n CubeSatSim/config -l -n -echo "Would you like to reboot to complete the installation (y/n)?\n" +echo "Would you like to reboot to complete the installation (y/n)?" -$read -r ANS +read -r ANS if [ "$ANS" = "y" ]; then @@ -164,6 +164,6 @@ if [ "$ANS" = "y" ]; then else - echo "\nThe CubeSatSim software will start next time you reboot" + echo "The CubeSatSim software will start next time you reboot" fi