Skip to content

Commit

Permalink
Merge pull request #40 from paramah/fix/cmd-alias-conflict
Browse files Browse the repository at this point in the history
Fixed alias conflicts in commands: container, login
  • Loading branch information
paramah committed Mar 3, 2024
2 parents eb1fdad + ec3265b commit 255177a
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 255177a

Please sign in to comment.