From 0d6dbbaccdf830f1efec39fa352e6a6f31608467 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 5 Feb 2016 11:55:43 +0000 Subject: [PATCH] error is now displayed correctly --- functions/core_dl.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/functions/core_dl.sh b/functions/core_dl.sh index d5029fdc9..c6a05ecf1 100644 --- a/functions/core_dl.sh +++ b/functions/core_dl.sh @@ -43,11 +43,11 @@ dl_md5=$4 if [ ! -f "${dl_filepath}/${dl_filename}" ]||[ -n "${retry_dl}" ]; then echo -ne "downloading ${dl_filename}...\c" - local dl=$(curl --fail -o "${dl_filepath}/${dl_filename}" "${dl_url}") - local exitcode=$? + dl=$(curl --fail -o "${dl_filepath}/${dl_filename}" "${dl_url}" 2>&1) + exitcode=$? if [ ${exitcode} -ne 0 ]; then fn_printfaileol - echo "${curl_dl}" + echo "${dl}" echo -e "${url}\n" exit ${exitcode} else