more cleanups on usefulness

This commit is contained in:
Jeff Carr 2025-08-19 22:22:33 -05:00
parent 47cd26fbab
commit cf83bbf6ac
2 changed files with 6 additions and 1 deletions

View File

@ -25,7 +25,7 @@ build: goimports vet plugin
install: goimports vet plugin
GO111MODULE=off go install \
-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
cp -f ~/go/bin/forge ~/go/bin/last.forge # this is a hack so that go-deb can build a .deb file for forge
cp -f ~/go/bin/forge ~/go/bin/last.forge # this is a hack so that go-deb can build a .deb file for forge # TODO: remove this
install-raw: goimports vet plugin
go install \

View File

@ -73,6 +73,11 @@ func doCommit() {
if err := shell.ExecCheck([]string{"git", "commit", "--all"}); err != nil {
badExit(err)
}
_, err := me.forge.SubmitDevelPatchSet("forge auto commit")
if err != nil {
badExit(err)
}
log.Info("git commit ok. forge done")
}