-
Notifications
You must be signed in to change notification settings - Fork 1
/
upgrade_cli.go
87 lines (75 loc) · 2.11 KB
/
upgrade_cli.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
package cmd
import (
"io"
"runtime"
"github.com/jenkins-x/jx/pkg/jx/cmd/templates"
cmdutil "github.com/jenkins-x/jx/pkg/jx/cmd/util"
"github.com/jenkins-x/jx/pkg/util"
"github.com/jenkins-x/jx/pkg/version"
"github.com/spf13/cobra"
)
var (
upgradeCLILong = templates.LongDesc(`
Upgrades the Jenkins X command line tools if there is a newer release
`)
upgradeCLIExample = templates.Examples(`
# Upgrades the Jenkins X CLI tools
jx upgrade cli
`)
)
// UpgradeCLIOptions the options for the create spring command
type UpgradeCLIOptions struct {
CreateOptions
Version string
}
// NewCmdUpgradeCLI defines the command
func NewCmdUpgradeCLI(f cmdutil.Factory, out io.Writer, errOut io.Writer) *cobra.Command {
options := &UpgradeCLIOptions{
CreateOptions: CreateOptions{
CommonOptions: CommonOptions{
Factory: f,
Out: out,
Err: errOut,
},
},
}
cmd := &cobra.Command{
Use: "cli",
Short: "Upgrades the command li applications - if there are new versions available",
Aliases: []string{"client", "clients"},
Long: upgradeCLILong,
Example: upgradeCLIExample,
Run: func(cmd *cobra.Command, args []string) {
options.Cmd = cmd
options.Args = args
err := options.Run()
cmdutil.CheckErr(err)
},
}
cmd.Flags().StringVarP(&options.Version, "version", "v", "", "The specific version to upgrade to")
return cmd
}
// Run implements the command
func (o *UpgradeCLIOptions) Run() error {
newVersion, err := o.getLatestJXVersion()
if err != nil {
return err
}
currentVersion, err := version.GetSemverVersion()
if err != nil {
return err
}
if newVersion.EQ(currentVersion) {
o.Printf("You are already on the latest version of jx %s\n", util.ColorInfo(currentVersion.String()))
return nil
}
if newVersion.LE(currentVersion) {
o.Printf("Your jx version %s is actually newer than the latest available version %s\n", util.ColorInfo(currentVersion.String()), util.ColorInfo(newVersion.String()))
return nil
}
if runtime.GOOS == "darwin" && !o.NoBrew {
return o.runCommand("brew", "upgrade", "jx")
} else {
return o.installJx(true, newVersion.String())
}
}