summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile3
-rw-r--r--TODO4
-rw-r--r--main.go3
-rw-r--r--prepareRelease.go1
4 files changed, 5 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 89d674a..5c931db 100644
--- a/Makefile
+++ b/Makefile
@@ -91,9 +91,6 @@ curl-incrementAllTargetVersions:
list-release-notdone:
curl --silent http://localhost:9419/releaseList?readonly=true
-list-all:
- curl --silent http://localhost:9419/list?readonly=true
-
safe-build: install
forge list --private
wit-test install --verbose
diff --git a/TODO b/TODO
index 98338a6..3a3ce9c 100644
--- a/TODO
+++ b/TODO
@@ -2,13 +2,11 @@ notes on what to fix next
go-args make patches for alexflint
-forge add dirty --show-files
forge checkout jcarr
+go-mod-clean set ctime on files
go-mod-clean fix --purge to be used more often. put --purge in 'make clean' ?
-guirel remove Makeilfe "list-something"
-guirelease show 'make list' after getting a new set of repos
guirelease try to figure out where the stupid output is coming from go-mod-clean
guireleaser change "title small" to the package being updated"
guireleaser make master log to avoid infinite loops
diff --git a/main.go b/main.go
index c32de01..311a04d 100644
--- a/main.go
+++ b/main.go
@@ -9,6 +9,7 @@ import (
"go.wit.com/dev/alexflint/arg"
"go.wit.com/gui"
+ "go.wit.com/lib/fhelp"
"go.wit.com/lib/gui/shell"
"go.wit.com/lib/protobuf/forgepb"
"go.wit.com/lib/protobuf/gitpb"
@@ -29,6 +30,8 @@ func main() {
me.forge = forgepb.Init()
me.found = new(gitpb.Repos)
+ fhelp.CheckGoModCleanExit()
+
/*
var bad bool = false
all := me.forge.Repos.SortByFullPath()
diff --git a/prepareRelease.go b/prepareRelease.go
index 4250224..4e41b40 100644
--- a/prepareRelease.go
+++ b/prepareRelease.go
@@ -129,4 +129,5 @@ func rePrepareRelease() {
}
}
+ me.forge.PrintHumanTable(me.found)
}