todo: enforce this in setTargetVersion()
This commit is contained in:
parent
e8b8316f23
commit
24e942df16
5
Makefile
5
Makefile
|
@ -71,8 +71,9 @@ curl-setCurrent-go-wit-com-gui:
|
||||||
curl-setTargetVersion-virtigo-v0.1.1:
|
curl-setTargetVersion-virtigo-v0.1.1:
|
||||||
curl --silent http://localhost:9419/setTargetVersion?version=v0.1.1
|
curl --silent http://localhost:9419/setTargetVersion?version=v0.1.1
|
||||||
|
|
||||||
curl-setTargetVersion-go-clone-v0.6:
|
# CAN NOT HAVE v0.6 -- MUST BE v0.6.0
|
||||||
curl --silent "http://localhost:9419/setTargetVersion?repo=go-clone&version=v0.6"
|
curl-setTargetVersion-go-clone-v0.6.0:
|
||||||
|
curl --silent "http://localhost:9419/setTargetVersion?repo=go-clone&version=v0.6.0"
|
||||||
|
|
||||||
curl-incrementAllTargetVersions:
|
curl-incrementAllTargetVersions:
|
||||||
curl --silent http://localhost:9419/setAllTargetVersions
|
curl --silent http://localhost:9419/setAllTargetVersions
|
||||||
|
|
|
@ -34,7 +34,6 @@ func doRelease() bool {
|
||||||
log.Info("go.mod disappeared. need to run go mod init and go mod tidy here:", pwd)
|
log.Info("go.mod disappeared. need to run go mod init and go mod tidy here:", pwd)
|
||||||
shell.RunRealtime([]string{"go", "mod", "init"})
|
shell.RunRealtime([]string{"go", "mod", "init"})
|
||||||
shell.RunRealtime([]string{"go", "mod", "tidy"})
|
shell.RunRealtime([]string{"go", "mod", "tidy"})
|
||||||
return false
|
|
||||||
}
|
}
|
||||||
|
|
||||||
curName := me.current.Status.GetCurrentBranchName()
|
curName := me.current.Status.GetCurrentBranchName()
|
||||||
|
|
Loading…
Reference in New Issue