diff --git a/functions/command_fastdl.sh b/functions/command_fastdl.sh index 7b589be5c..f52b041e2 100644 --- a/functions/command_fastdl.sh +++ b/functions/command_fastdl.sh @@ -96,10 +96,10 @@ if [ ${newfastdl} == 1 ]; then echo -en "\n" fi if [ ${bzip2installed} == 1 ]; then - fn_printdots "Enable file compression using bzip2?" + fn_printdots sleep 1 while true; do - read -p "Use bzip2? [y/n]" yn + read -p "Enable file compression using bzip2?? [Y/n]" Yn case $yn in [Yy]* ) bzip2enable="on"; fn_scriptlog "bzip2 enabled"; fn_printok "bzip2 Enabled"; break;; [Nn]* ) bzip2enable="off"; fn_scriptlog "bzip2 disabled"; fn_printok "bzip2 Disabled;" break;;