diff options
Diffstat (limited to 'cmd/podman/rmi.go')
-rw-r--r-- | cmd/podman/rmi.go | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/cmd/podman/rmi.go b/cmd/podman/rmi.go index 910c7ba35..5e8ac81a2 100644 --- a/cmd/podman/rmi.go +++ b/cmd/podman/rmi.go @@ -24,22 +24,22 @@ var ( }, } rmiCommand = cli.Command{ - Name: "rmi", - Usage: "Removes one or more images from local storage", - Description: rmiDescription, - Action: rmiCmd, - ArgsUsage: "IMAGE-NAME-OR-ID [...]", - Flags: sortFlags(rmiFlags), + Name: "rmi", + Usage: "Removes one or more images from local storage", + Description: rmiDescription, + Action: rmiCmd, + ArgsUsage: "IMAGE-NAME-OR-ID [...]", + Flags: sortFlags(rmiFlags), UseShortOptionHandling: true, OnUsageError: usageErrorHandler, } rmImageCommand = cli.Command{ - Name: "rm", - Usage: "removes one or more images from local storage", - Description: rmiDescription, - Action: rmiCmd, - ArgsUsage: "IMAGE-NAME-OR-ID [...]", - Flags: rmiFlags, + Name: "rm", + Usage: "removes one or more images from local storage", + Description: rmiDescription, + Action: rmiCmd, + ArgsUsage: "IMAGE-NAME-OR-ID [...]", + Flags: rmiFlags, UseShortOptionHandling: true, OnUsageError: usageErrorHandler, } |