Skip to content

Commit

Permalink
fix(命令): 修复错误使用不存在的方法
Browse files Browse the repository at this point in the history
  • Loading branch information
storezhang committed Apr 25, 2024
1 parent ba5e6ca commit 9eb9b1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/cleanup/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ func NewCommand(ctx context.Context, builder *Builder, pwe *bool, verbose bool,
return
}

func (c *Command) Args(args *args.Args) (command *Command) {
c.gex.Args(args)
func (c *Command) Arguments(arguments *args.Arguments) (command *Command) {
c.gex.Args(arguments)
command = c

return
Expand Down

0 comments on commit 9eb9b1a

Please sign in to comment.