From d3f7be4919e76e761bf5e72d8e4d5056f0949ed0 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 27 Feb 2016 11:05:33 +0000 Subject: [PATCH] fixed progress bar showing for some .sh files --- functions/core_dl.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/functions/core_dl.sh b/functions/core_dl.sh index 9d2b95fff..d6fc8cd04 100644 --- a/functions/core_dl.sh +++ b/functions/core_dl.sh @@ -95,9 +95,8 @@ if [ ! -f "${filedir}/${filename}" ]; then if [ "$(basename ${curlcmd})" == "curl" ]; then # trap to remove part downloaded files trap fn_fetch_trap INT - # if larger file shows progress bar - if [[ $filename == *"tar"* ]]; then + if [ ${filename##*.} == "bz2" ]; then echo -ne "downloading ${filename}..." sleep 1 curlcmd=$(${curlcmd} --progress-bar --fail -o "${filedir}/${filename}" "${fileurl}")