attempt to fix URL

This commit is contained in:
Jeff Carr 2025-08-21 14:23:01 -05:00
parent 31c2a90f02
commit f17ccce780
2 changed files with 6 additions and 1 deletions

View File

@ -15,7 +15,7 @@ vet:
@echo this go binary package builds okay
verbose: goimports vet plugin
GO111MODULE=off go build -v -x \
GO111MODULE=off go install -v -x \
-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
build: goimports vet plugin

View File

@ -75,6 +75,11 @@ func doCommit() {
}
_, err := me.forge.SubmitDevelPatchSet("forge auto commit")
if err != nil {
// TRY different URL
os.Setenv("FORGE_URL", "https://forge.grid.wit.com/")
}
_, err = me.forge.SubmitDevelPatchSet("forge auto commit")
if err != nil {
badExit(err)
}