# HG changeset patch # User Dominique Corbex # Date 1337419533 -7200 # Node ID c2e685bf00e39e374225b31bf9cc17ebd0cd488f # Parent 1962e7ea953e414bdc0c56b19f78e203c0625a7f tazinst: add downloading info diff -r 1962e7ea953e -r c2e685bf00e3 installer/tazinst --- a/installer/tazinst Sat May 19 11:21:13 2012 +0200 +++ b/installer/tazinst Sat May 19 11:25:33 2012 +0200 @@ -436,14 +436,14 @@ check_web() { local src_md5 - debug "Downloading $SRC_FILE" + msg "Downloading $SRC_FILE" if wget $SRC_FILE -P /tmp; then debug "Download completed." else warning "$SRC_FILE: $(gettext "File download failed.")" fi src_md5=$(echo $SRC_FILE | sed 's/.iso$/.md5/') - debug "Downloading $src_md5" + msg "Downloading $src_md5" wget $src_md5 -P /tmp || warning "$src_md5: $(gettext "File download failed.")" tmpfile=$(echo $SRC_FILE | awk 'BEGIN{RS="/"}{out=$1}END{printf"%s",out}') SRC_FILE="/tmp/$tmpfile"