From 339f5ff27e96da6eb02e158aa0b33de8104618ca Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Fri, 14 Feb 2025 17:27:00 -0600 Subject: complete restructure --- main.go | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) (limited to 'main.go') diff --git a/main.go b/main.go index 91a3a50..d39b174 100644 --- a/main.go +++ b/main.go @@ -102,6 +102,20 @@ func main() { okExit("") } + doListRepos() + if argv.DebBuild != nil { + buildDeb() + okExit("") + } + if argv.MakeInstall != nil { + if err := doInstall(); err != nil { + log.Info("doInstall() failed", err) + badExit(err) + } else { + okExit("EVERYTHING BUILT!") + } + } + all := me.forge.Repos.SortByFullPath() for all.Scan() { check := all.Next() @@ -222,9 +236,6 @@ func main() { continue } } - if argv.DebBuild != nil { - buildDeb() - } if len(failed) != 0 { log.Info("") log.Info("something failed on:") -- cgit v1.2.3