From 49e67ac00166b49a21d358527133f2a880e416d2 Mon Sep 17 00:00:00 2001 From: BodgeMaster <> Date: Fri, 30 Jun 2023 12:48:17 +0200 Subject: [PATCH] install stage 1: echo new line at the end of press_any_key and are_you_really_really_sure --- install-stage1.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install-stage1.sh b/install-stage1.sh index 45b92ba..4978dc0 100644 --- a/install-stage1.sh +++ b/install-stage1.sh @@ -5,11 +5,13 @@ LOGFILE=/tmp/void-usb-install-log function press_any_key { echo "Press any key to continue or Ctrl+c to abort..." read -n1 DISCARD_ME + echo "" } function are_you_really_really_sure { echo "Enter the following to continue: $1" read -p "> " DISCARD_ME + echo "" if [ "$1" = "$DISCARD_ME" ]; then return 0 else