fix(build.sh): Add newline after prompt

This commit is contained in:
Michael Carlberg 2016-05-24 04:44:02 +02:00
parent a6ebd3986f
commit 58ff2d53f3
1 changed files with 1 additions and 0 deletions

View File

@ -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..."