From 7f6ce1c9b5915324e3d62b37f96a130a2300735e Mon Sep 17 00:00:00 2001 From: Justin_U Date: Sun, 1 Jan 2017 21:12:14 -0600 Subject: [PATCH] I like the verbose output, so lets see it --- get-source.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/get-source.sh b/get-source.sh index 21f10c4..ffffaf6 100755 --- a/get-source.sh +++ b/get-source.sh @@ -112,7 +112,7 @@ if ! [ -f ${SOURCE} ]; then if [ -f ${SOURCE} ]; then echo "Ah, found it!"; continue; fi if ! [ "x${SRCURL}" == "x" ]; then echo "Will download file to $(dirname $SOURCE)" - wget -nv -T 20 -O "${SOURCE}" "${SRCURL}" + wget -T 20 -O "${SOURCE}" "${SRCURL}" if [ $? -ne 0 -o ! -s "${SOURCE}" ]; then echo "Downloading '$(basename ${SOURCE})' failed... aborting the build." mv -f "${SOURCE}" "${SOURCE}".FAIL