From 52b9e0dfe329bc83d41b99c83b952b51787b11a0 Mon Sep 17 00:00:00 2001 From: lrob Date: Fri, 19 Feb 2016 06:45:14 +0100 Subject: [PATCH] fixed shitty syntax --- 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 079fa37d6..583c5c55d 100644 --- a/functions/command_fastdl.sh +++ b/functions/command_fastdl.sh @@ -110,7 +110,7 @@ if [ ${bzip2installed} == 1 ]; then 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;; + [Nn]* ) bzip2enable="off"; fn_scriptlog "bzip2 disabled"; fn_printok "bzip2 Disabled"; break;; * ) echo "Please answer yes or no.";; esac done