We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9672a6d commit b289b24Copy full SHA for b289b24
internal/boxcli/outdated.go
@@ -23,18 +23,18 @@ func outdatedCmd() *cobra.Command {
23
return errors.WithStack(err)
24
}
25
26
- resutls, err := box.Outdated(cmd.Context())
+ results, err := box.Outdated(cmd.Context())
27
if err != nil {
28
29
30
31
- if len(resutls) == 0 {
+ if len(results) == 0 {
32
cmd.Println("Your packages are up to date!")
33
return nil
34
35
36
cmd.Println("The following packages can be updated:")
37
- for pkg, version := range resutls {
+ for pkg, version := range results {
38
cmd.Printf(" * %-30s %s -> %s\n", pkg, version.Current, version.Latest)
39
40
0 commit comments