diff options
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | doMerge.go | 4 |
2 files changed, 4 insertions, 2 deletions
@@ -7,7 +7,7 @@ BUILDTIME = $(shell date +%s) # make andlabs # try the andlabs gui plugin (uses GTK) default: install - forge verify + ~/go/bin/forge --version # This will re-generate ALL of the needed autogenerated .pb.go files generate: clean @@ -93,7 +93,9 @@ func safeToPublish() error { log.Info("you currently have no repos with patches") return log.Errorf("no repos to publish") } - me.forge.PrintDefaultTB(found) + footer := me.forge.PrintDefaultTB(found) + log.Info("safeToPublish() probably safe footer:", footer) + // check if any are dirty for repo := range found.IterAll() { if repo.CheckDirty() { |
