image_builder: disable STDOUT in wget image

This commit is contained in:
Artem Smirnov
2018-08-22 23:59:16 +03:00
parent 9cf8357c4f
commit 2f584fd2d7

View File

@@ -36,7 +36,7 @@ get_image() {
if [ ! -e "${BUILD_DIR}/${RPI_ZIP_NAME}" ];
then
echo_stamp "1. Downloading original Linux distribution"
wget -nv -O ${BUILD_DIR}/${RPI_ZIP_NAME} $2
wget -nv -O ${BUILD_DIR}/${RPI_ZIP_NAME} $2 > /dev/null
echo_stamp "Downloading complete" "SUCCESS"
else
echo_stamp "1. Linux distribution already donwloaded"