From 322ec42ce6da80915a80ed36f02bc6a15c238fb2 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Fri, 3 Oct 2025 05:50:14 -0500 Subject: try to make apt install --force to work --- doDebian.go | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) (limited to 'doDebian.go') diff --git a/doDebian.go b/doDebian.go index 63009b3..33e3f8d 100644 --- a/doDebian.go +++ b/doDebian.go @@ -47,21 +47,17 @@ func doDebian() { okExit("") } - if argv.Debian.SkipInstall { - log.Info("doDebian() skipping go install test") - } else { - me.forge.ConfigRill(16, 16) - stats := me.forge.RunOnRepos(found, doInstallRepo) - for s, stat := range stats { - log.Info(s, stat.Err) - if stat.Err != nil { - badExit(stat.Err) - } + me.forge.ConfigRill(16, 16) + stats := me.forge.RunOnRepos(found, doInstallRepo) + for s, stat := range stats { + log.Info(s, stat.Err) + if stat.Err != nil { + badExit(stat.Err) } } me.forge.ConfigRill(16, 16) - stats := me.forge.RunOnRepos(found, buildDeb) + stats = me.forge.RunOnRepos(found, buildDeb) for s, stat := range stats { log.Info(s, stat.Err) if stat.Err != nil { -- cgit v1.2.3