From b8817a49305ddb761d4f08a64605c9cee6048790 Mon Sep 17 00:00:00 2001 From: Mikhail Klementev Date: Thu, 18 May 2023 22:31:34 +0000 Subject: [PATCH] feat: less verbose wget output --- distro/debian/debian.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distro/debian/debian.go b/distro/debian/debian.go index 04ba90e..4b05728 100644 --- a/distro/debian/debian.go +++ b/distro/debian/debian.go @@ -377,7 +377,7 @@ func Install(km config.Target, pkgname string, headers bool) (cmds []string, err // TODO use faketime on old releases? pkg.Deb.URL = strings.Replace(pkg.Deb.URL, "https", "http", -1) - cmds = append(cmds, "wget "+ + cmds = append(cmds, "wget --no-verbose "+ "--timeout=10 --waitretry=1 --tries=10 "+ "--no-check-certificate "+pkg.Deb.URL) }