diff options
| author | Jeff Carr <[email protected]> | 2025-02-14 17:27:00 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-02-14 17:27:00 -0600 |
| commit | 339f5ff27e96da6eb02e158aa0b33de8104618ca (patch) | |
| tree | 01f172f407ef7095b2fa687283cdd431f7008327 /main.go | |
| parent | 22e0cbe022faa067c3dddc50f99029ccfa24c2df (diff) | |
complete restructure
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 17 |
1 files changed, 14 insertions, 3 deletions
@@ -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:") |
