You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 28, 2021. It is now read-only.
❯ jx version
version: 3.1.73
❯ jx upgrade cli
using local versionstream URL https://github.com/jenkins-x/jxr-versions from Kptfile to resolve jx-cli version
downloading version 3.1.73...
Jenkins X client has been upgraded to version 3.1.73
There are two GetVersion functions in the code
pkg/version/info.go:70
uses Map["version"] or TestVersion
pkg/cmd/version/version.go:55
uses var Version or TestVersion
Looks like the makefile provides build args for pkg/cmd/version.Version
However the upgrade command uses pkg.version.GetSemverVersion() which uses pkg.version.Map["version"]
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
There are two GetVersion functions in the code
pkg/version/info.go:70
uses
Map["version"]
orTestVersion
pkg/cmd/version/version.go:55
uses
var Version
orTestVersion
Looks like the makefile provides build args for
pkg/cmd/version.Version
However the upgrade command uses
pkg.version.GetSemverVersion()
which usespkg.version.Map["version"]
The text was updated successfully, but these errors were encountered: