summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-08-21 14:23:01 -0500
committerJeff Carr <[email protected]>2025-08-21 14:23:01 -0500
commitf17ccce7805a8b6cde4c4fe153746cd3c9f8fa1e (patch)
tree5d9717bef567269e458d4a6e670baa7fffa4e018
parent31c2a90f027cc65603dbc43066c74f5df8d05d9b (diff)
attempt to fix URL
-rw-r--r--Makefile2
-rw-r--r--doCommit.go5
2 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 48b4d69..6d9276f 100644
--- a/Makefile
+++ b/Makefile
@@ -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
diff --git a/doCommit.go b/doCommit.go
index d7b9196..452fcd4 100644
--- a/doCommit.go
+++ b/doCommit.go
@@ -76,6 +76,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)
}
log.Info("git commit ok. forge done")