diff options
| author | Jeff Carr <[email protected]> | 2025-10-03 04:03:22 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-03 04:03:22 -0500 |
| commit | 13dccc522038f8b4303972e3e78b7867193fdbeb (patch) | |
| tree | 7a26c908be65a866eefbe0b5c5682ea8af82403b /doDebian.go | |
| parent | 3e8bef724c2173c4ecf749e0c03d9131abd094bb (diff) | |
rdate
Diffstat (limited to 'doDebian.go')
| -rw-r--r-- | doDebian.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doDebian.go b/doDebian.go index 5bdf614..10321aa 100644 --- a/doDebian.go +++ b/doDebian.go @@ -9,7 +9,9 @@ import ( ) func doDebian() { - if !argv.Debian.SkipInstall { + if argv.Force || argv.Debian.Force || argv.Debian.SkipInstall { + log.Info("doDebian() skipping go install test") + } else { if err := doInstall(); err != nil { log.Info("doInstall() failed", err) badExit(err) |
