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
|
||||
|
||||
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
|
||||
|
|
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue