attempt to fix URL
This commit is contained in:
parent
31c2a90f02
commit
f17ccce780
2
Makefile
2
Makefile
|
@ -15,7 +15,7 @@ vet:
|
||||||
@echo this go binary package builds okay
|
@echo this go binary package builds okay
|
||||||
|
|
||||||
verbose: goimports vet plugin
|
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}"
|
-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
|
||||||
|
|
||||||
build: goimports vet plugin
|
build: goimports vet plugin
|
||||||
|
|
|
@ -75,6 +75,11 @@ func doCommit() {
|
||||||
}
|
}
|
||||||
|
|
||||||
_, err := me.forge.SubmitDevelPatchSet("forge auto commit")
|
_, 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 {
|
if err != nil {
|
||||||
badExit(err)
|
badExit(err)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue