check for go-mod-clean
This commit is contained in:
parent
cb26cd9610
commit
5a745337fb
3
Makefile
3
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
|
||||
|
|
4
TODO
4
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
|
||||
|
|
3
main.go
3
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()
|
||||
|
|
|
@ -129,4 +129,5 @@ func rePrepareRelease() {
|
|||
}
|
||||
|
||||
}
|
||||
me.forge.PrintHumanTable(me.found)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue