From: Felix Fietkau Date: Tue, 9 May 2017 13:20:42 +0000 (+0200) Subject: scripts/download.pl: print the command used to download files X-Git-Tag: v17.01.5~218 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=ef43c04c34f23433fea6744eb96b1dfbb1cc4c0d scripts/download.pl: print the command used to download files Signed-off-by: Felix Fietkau (cherry picked from commit cbe0a7ecc0b76f4d97d87ca59a0ff8074b8946f4) --- diff --git a/scripts/download.pl b/scripts/download.pl index 3936f7659a..5c9397b932 100755 --- a/scripts/download.pl +++ b/scripts/download.pl @@ -139,6 +139,7 @@ sub download }; } else { my @cmd = download_cmd("$mirror/$url_filename"); + print STDERR "+ ".join(" ",@cmd)."\n"; open(FETCH_FD, '-|', @cmd) or die "Cannot launch curl or wget.\n"; $hash_cmd and do { open MD5SUM, "| $hash_cmd > '$target/$filename.hash'" or die "Cannot launch $hash_cmd.\n";