File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -927,7 +927,7 @@ download_pkg_from_url() {
927927 case " ${DOWNLOAD_CERT_POLICY:- smart} " in
928928 " strict" )
929929 echo " Downloading with strict certificate validation: $__url "
930- if ! wget ${DOWNLOADER_FLAGS} " $__url " -O " $__filename " ; then
930+ if ! wget --quiet --show-progress ${DOWNLOADER_FLAGS} " $__url " -O " $__filename " ; then
931931 rm -f " $__filename "
932932 report_error " failed to download $__url (strict certificate validation)"
933933 recommend_offline_installation " $__filename " " $__url "
@@ -938,7 +938,7 @@ download_pkg_from_url() {
938938 ;;
939939 " skip" )
940940 echo " Downloading with certificate validation disabled: $__url "
941- if ! wget ${DOWNLOADER_FLAGS} " $__url " -O " $__filename " --no-check-certificate; then
941+ if ! wget --quiet --show-progress ${DOWNLOADER_FLAGS} " $__url " -O " $__filename " --no-check-certificate; then
942942 rm -f " $__filename "
943943 report_error " failed to download $__url "
944944 recommend_offline_installation " $__filename " " $__url "
@@ -950,7 +950,7 @@ download_pkg_from_url() {
950950 " smart" |* )
951951 # Smart fallback: try with certificate validation first, then without
952952 echo " Attempting secure download: $__url "
953- if wget ${DOWNLOADER_FLAGS} " $__url " -O " $__filename " ; then
953+ if wget --quiet --show-progress ${DOWNLOADER_FLAGS} " $__url " -O " $__filename " ; then
954954 echo " Download successful with certificate validation"
955955 else
956956 echo " Certificate validation failed, retrying without certificate check..."
You can’t perform that action at this time.
0 commit comments