summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-02-14 17:27:00 -0600
committerJeff Carr <[email protected]>2025-02-14 17:27:00 -0600
commit339f5ff27e96da6eb02e158aa0b33de8104618ca (patch)
tree01f172f407ef7095b2fa687283cdd431f7008327 /main.go
parent22e0cbe022faa067c3dddc50f99029ccfa24c2df (diff)
complete restructure
Diffstat (limited to 'main.go')
-rw-r--r--main.go17
1 files changed, 14 insertions, 3 deletions
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:")