Convert CLI to urfave v2
Followed the Migration Guide at https://cli.urfave.org/migrate-v1-to-v2/ The major changes not pointed out in the migration guide are: - context.Args() no longer produces a []slice, so context.Args().Slice() in substitued - All cli.Global***** are deprecated (the migration guide is somewhat unclear on this) Signed-off-by: Derek Nola <derek.nola@suse.com> Vendor in urfave cli/v2 Signed-off-by: Derek Nola <derek.nola@suse.com> Fix NewStringSlice calls Signed-off-by: Derek Nola <derek.nola@suse.com>
This commit is contained in:
@@ -19,25 +19,27 @@ package install
|
||||
import (
|
||||
containerd "github.com/containerd/containerd/v2/client"
|
||||
"github.com/containerd/containerd/v2/cmd/ctr/commands"
|
||||
"github.com/urfave/cli"
|
||||
"github.com/urfave/cli/v2"
|
||||
)
|
||||
|
||||
// Command to install binary packages
|
||||
var Command = cli.Command{
|
||||
var Command = &cli.Command{
|
||||
Name: "install",
|
||||
Usage: "Install a new package",
|
||||
ArgsUsage: "<ref>",
|
||||
Description: "install a new package",
|
||||
Flags: []cli.Flag{
|
||||
cli.BoolFlag{
|
||||
Name: "libs,l",
|
||||
Usage: "Install libs from the image",
|
||||
&cli.BoolFlag{
|
||||
Name: "libs",
|
||||
Aliases: []string{"l"},
|
||||
Usage: "Install libs from the image",
|
||||
},
|
||||
cli.BoolFlag{
|
||||
Name: "replace,r",
|
||||
Usage: "Replace any binaries or libs in the opt directory",
|
||||
&cli.BoolFlag{
|
||||
Name: "replace",
|
||||
Aliases: []string{"r"},
|
||||
Usage: "Replace any binaries or libs in the opt directory",
|
||||
},
|
||||
cli.StringFlag{
|
||||
&cli.StringFlag{
|
||||
Name: "path",
|
||||
Usage: "Set an optional install path other than the managed opt directory",
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user