Browse Source

changes sleep to 0.5 to speed up files loading

pull/1787/head
Daniel Gibbs 7 years ago
parent
commit
9791f93fe4
  1. 2
      lgsm/functions/core_dl.sh

2
lgsm/functions/core_dl.sh

@ -115,7 +115,7 @@ fn_fetch_file(){
# if larger file shows progress bar
if [ "${local_filename##*.}" == "bz2" ]||[ "${local_filename##*.}" == "gz" ]||[ "${local_filename##*.}" == "zip" ]||[ "${local_filename##*.}" == "jar" ]; then
echo -ne "downloading ${local_filename}..."
sleep 1
sleep 0.5
curlcmd=$(${curlpath} --progress-bar --fail -L -o "${local_filedir}/${local_filename}" "${remote_fileurl}")
echo -ne "downloading ${local_filename}..."
else

Loading…
Cancel
Save