From 58ff2d53f39a0053f8ef7378b881cf26a7055712 Mon Sep 17 00:00:00 2001 From: Michael Carlberg Date: Tue, 24 May 2016 04:44:02 +0200 Subject: [PATCH] fix(build.sh): Add newline after prompt --- build.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/build.sh b/build.sh index e8b2047e..b0f4110e 100755 --- a/build.sh +++ b/build.sh @@ -27,6 +27,7 @@ function main echo -e "\n" read -N1 -p "Do you want to execute \"sudo make install\"? [Y/n] " -r choice + echo if [[ "${choice^^}" == "Y" ]]; then sudo make install || msg_err "Failed to install executables..."