todo: enforce this in setTargetVersion()

This commit is contained in:
Jeff Carr 2024-11-22 21:34:46 -06:00
parent e8b8316f23
commit 24e942df16
2 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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()