Update version string format in Makefile and code files to use 'v' prefix

This commit is contained in:
alex
2025-07-05 12:56:53 +03:00
parent 2ad4c57b2c
commit b38e492e7e
3 changed files with 5 additions and 5 deletions

View File

@@ -22,7 +22,7 @@ type _updateConsts struct{}
func GetUpdateConsts() _updateConsts { return _updateConsts{} }
func (_ _updateConsts) GetNodeVersion() string {
if NodeVersion == "" {
return "version0.0.0-none"
return "v0.0.0-none"
}
return NodeVersion
}