From 3a4266b9f149daa27465e3ee5feb248bd37f0c09 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 20 Feb 2017 03:16:16 +0100 Subject: [PATCH] missing ";", attempt for fix --- lgsm/functions/command_fastdl.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_fastdl.sh b/lgsm/functions/command_fastdl.sh index 4b7584079..0f7c034cd 100644 --- a/lgsm/functions/command_fastdl.sh +++ b/lgsm/functions/command_fastdl.sh @@ -373,13 +373,13 @@ fn_fastdl_bzip2(){ if fn_prompt_yn "Keep original/uncompressed FastDL files?" N; then fn_print_info "Keeping uncompressed FastDL files"; fn_script_log fn_print_info "Keeping uncompressed FastDL files" else - find "${fastdldir}" \( -type f ! -name "*.bz2" \) -exec rm {} \; fn_print_dots "Clearing uncompressed FastDL files..."; sleep 1; fn_print_ok "Cleared uncompressed FastDL files"; fn_script_log "Cleared uncompressed FastDL files." + find "${fastdldir}" \( -type f ! -name "*.bz2" \) -exec rm {} \;;fn_print_dots "Clearing uncompressed FastDL files..."; sleep 1; fn_print_ok "Cleared uncompressed FastDL files"; fn_script_log "Cleared uncompressed FastDL files." fi echo -en "\n" else fn_print_dots "Clearing uncompressed FastDL files..." sleep 1 - find "${fastdldir}" \( -type f ! -name "*.bz2" \) -exec rm {} \ + find "${fastdldir}" \( -type f ! -name "*.bz2" \) -exec rm {} \; fn_print_ok "Cleared uncompressed FastDL files." fn_script_log "Cleared uncompressed FastDL files." fi