Readjust output based on single char input strategy

pull/174/head
nickl- 2012-12-07 02:16:08 +02:00
parent c78251fc27
commit 061cca5304
1 changed files with 3 additions and 3 deletions

View File

@ -24,15 +24,15 @@ while true; do
case ${RESP} in case ${RESP} in
[yY]) [yY])
cp "${BASH_IT}/template/jekyllconfig.template.bash" "${HOME}/.jekyllconfig" cp "${BASH_IT}/template/jekyllconfig.template.bash" "${HOME}/.jekyllconfig"
echo "Copied the template .jekyllconfig into your home directory." \ echo -e "\nCopied the template .jekyllconfig into your home directory." \
"Edit this file to customize bash-it for using the Jekyll plugins" "Edit this file to customize bash-it when using the Jekyll plugins"
break break
;; ;;
[nN]) [nN])
break break
;; ;;
*) *)
echo "Please enter Y or N" echo " Please enter Y or N"
esac esac
done done