summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go28
1 files changed, 12 insertions, 16 deletions
diff --git a/main.go b/main.go
index b8e6ab0..e506b22 100644
--- a/main.go
+++ b/main.go
@@ -2,30 +2,26 @@ package main
import (
"go.wit.com/lib/protobuf/forgepb"
- "go.wit.com/log"
)
// go will sit here until the window exits
func main() {
forge := forgepb.Init()
- all := forge.Repos.SortByFullPath()
- for all.Scan() {
- check := all.Next()
+ cmd := []string{"make", "install"}
+ if repo := forge.Repos.FindByNamespace("go.wit.com/toolkits/gocui"); repo != nil {
+ repo.RunVerbose(cmd)
+ }
- repotype := check.GetRepoType()
- if repotype != "plugin" {
- continue
- }
+ if repo := forge.Repos.FindByNamespace("go.wit.com/toolkits/andlabs"); repo != nil {
+ repo.RunVerbose(cmd)
+ }
- if forge.Config.IsReadOnly(check.GetGoPath()) {
- // ignore read only stuff
- continue
- }
+ if repo := forge.Repos.FindByNamespace("go.wit.com/toolkits/nocui"); repo != nil {
+ repo.RunVerbose(cmd)
+ }
- log.Info("STARTING 'make install' in", check.GetGoPath())
- if err := forge.Install(check, nil); err != nil {
- log.Warn("INSTALL FAILED", check.GetGoPath(), err)
- }
+ if repo := forge.Repos.FindByNamespace("go.wit.com/toolkits/fyne"); repo != nil {
+ repo.RunVerbose(cmd)
}
}