Skip to content

Commit

Permalink
Fixed alias conflicts in commands: container, login
Browse files Browse the repository at this point in the history
  • Loading branch information
vertisan committed Mar 1, 2024
1 parent eb1fdad commit ec3265b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion app/cmd/container/exec.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

var CmdComposeExec = cli.Command{
Name: "exec",
Aliases: []string{"r"},
Aliases: []string{"e"},
Usage: "exec cmd in a main running container",
Description: `Execute command in a main running container`,
ArgsUsage: "[<cmd>]",
Expand Down
1 change: 0 additions & 1 deletion app/cmd/container/login.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import (

var CmdDockerLogin = cli.Command{
Name: "login",
Aliases: []string{"l"},
Usage: "Docker Registry login",
Description: `Login to container registry`,
Subcommands: []*cli.Command{
Expand Down

0 comments on commit ec3265b

Please sign in to comment.