diff options
| author | Jeff Carr <[email protected]> | 2024-11-22 21:34:46 -0600 | 
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-11-22 21:34:46 -0600 | 
| commit | 24e942df16754df52ad6a921a56f66eeca00e3b1 (patch) | |
| tree | c74a254cff59314834fe45b506185a12d1cc9c42 | |
| parent | e8b8316f234026c6ece35ddc5f21609053a389a4 (diff) | |
todo: enforce this in setTargetVersion()v0.22.20
| -rw-r--r-- | Makefile | 5 | ||||
| -rw-r--r-- | doRelease.go | 1 | 
2 files changed, 3 insertions, 3 deletions
@@ -71,8 +71,9 @@ curl-setCurrent-go-wit-com-gui:  curl-setTargetVersion-virtigo-v0.1.1:  	curl --silent http://localhost:9419/setTargetVersion?version=v0.1.1 -curl-setTargetVersion-go-clone-v0.6: -	curl --silent "http://localhost:9419/setTargetVersion?repo=go-clone&version=v0.6" +# CAN NOT HAVE v0.6 -- MUST BE v0.6.0 +curl-setTargetVersion-go-clone-v0.6.0: +	curl --silent "http://localhost:9419/setTargetVersion?repo=go-clone&version=v0.6.0"  curl-incrementAllTargetVersions:  	curl --silent http://localhost:9419/setAllTargetVersions diff --git a/doRelease.go b/doRelease.go index 9cdd6d3..e9eef6a 100644 --- a/doRelease.go +++ b/doRelease.go @@ -34,7 +34,6 @@ func doRelease() bool {  		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", "tidy"}) -		return false  	}  	curName := me.current.Status.GetCurrentBranchName()  | 
