From c78251fc270b5fa37966b32495ad971e9fb1600f Mon Sep 17 00:00:00 2001 From: nickl- Date: Fri, 7 Dec 2012 02:15:19 +0200 Subject: [PATCH] Jekyll prompt use single char input --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 38bb329a..81bff138 100755 --- a/install.sh +++ b/install.sh @@ -20,7 +20,7 @@ fi cp "${BASH_IT}/template/bash_profile.template.bash" "${HOME}/.bash_profile" while true; do - read -p "Do you use Jekyll? (If you don't know what Jekyll is, answer 'n') [Y/N] " RESP + read -n 1 -p "Do you use Jekyll? (If you don't know what Jekyll is, answer 'n') [Y/N] " RESP case ${RESP} in [yY]) cp "${BASH_IT}/template/jekyllconfig.template.bash" "${HOME}/.jekyllconfig"