From 62b05cf3d1f4ae6c39825a025b940766ec81ac90 Mon Sep 17 00:00:00 2001 From: lrob Date: Fri, 19 Feb 2016 06:59:46 +0100 Subject: [PATCH] missing space --- functions/command_fastdl.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/command_fastdl.sh b/functions/command_fastdl.sh index 6826ce97a..bf377cb68 100644 --- a/functions/command_fastdl.sh +++ b/functions/command_fastdl.sh @@ -107,7 +107,7 @@ fi if [ ${bzip2installed} == 1 ]; then fn_printdots while true; do - read -e -i "y"-p "Enable file compression using bzip2? [Y/n]" yn + read -e -i "y" -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;;