Browse Source

fix(fastdl): linebreaks for fastdl output (#2451)

Co-authored-by: Christian Birk <[email protected]>
pull/2477/head
Christian 6 years ago
committed by Daniel Gibbs
parent
commit
d88c81e17f
  1. 4
      lgsm/functions/command_fastdl.sh

4
lgsm/functions/command_fastdl.sh

@ -166,6 +166,8 @@ fn_fastdl_preview(){
done < <(find . -type f -iname ${allowed_extention}) done < <(find . -type f -iname ${allowed_extention})
if [ ${fileswc} != 0 ]; then if [ ${fileswc} != 0 ]; then
fn_print_ok_eol_nl fn_print_ok_eol_nl
else
fn_print_info_eol_nl
fi fi
done done
# Source engine # Source engine
@ -197,6 +199,8 @@ fn_fastdl_preview(){
printf "gathering ${directory} ${allowed_extention} : ${fileswc}..." printf "gathering ${directory} ${allowed_extention} : ${fileswc}..."
if [ ${fileswc} != 0 ]; then if [ ${fileswc} != 0 ]; then
fn_print_ok_eol_nl fn_print_ok_eol_nl
else
fn_print_info_eol_nl
fi fi
done done
fi fi

Loading…
Cancel
Save