]> Untitled Git - lemmy.git/commitdiff
Add line breaks after user prompts in install.sh
authorRichie Zhang <12566991+StaticallyTypedRice@users.noreply.github.com>
Sat, 8 Feb 2020 21:02:40 +0000 (13:02 -0800)
committerGitHub <noreply@github.com>
Sat, 8 Feb 2020 21:02:40 +0000 (13:02 -0800)
install.sh

index 9bed6e1d505e8ce53b954894a0deee4acfd5e3c0..b368891cf8d2be1069ac089d164f22cb5beced58 100755 (executable)
@@ -21,11 +21,13 @@ do
     n|no ) init_db_valid=1; init_db_final=0;;
     * ) echo "Invalid input" 1>&2;;
   esac
+  echo
 done
 if [ "$init_db_final" = 1 ]
 then
   source ./server/db-init.sh
   read -n 1 -s -r -p "Press ANY KEY to continue execution of this script, press CTRL+C to quit..."
+  echo
 fi
 
 # Build the web client