diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-03-18 14:01:43 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-18 14:01:43 -0700 |
commit | 07e10d9dd6c0c0828637f770234266daa182fc95 (patch) | |
tree | 9638b5fa9777681a51f93baae5a61042a2045c74 /cmd/podman/mount.go | |
parent | 41019f747280ba2c47df2ce6f83ddebfc2000745 (diff) | |
parent | abf3500e8f672e71c6e91fd5bbb70da6abd4d5af (diff) | |
download | podman-07e10d9dd6c0c0828637f770234266daa182fc95.tar.gz podman-07e10d9dd6c0c0828637f770234266daa182fc95.tar.bz2 podman-07e10d9dd6c0c0828637f770234266daa182fc95.zip |
Merge pull request #2700 from edsantiago/podman_umount_args
podman umount: error out if called with no args
Diffstat (limited to 'cmd/podman/mount.go')
-rw-r--r-- | cmd/podman/mount.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/mount.go b/cmd/podman/mount.go index 4381074ab..d074551ce 100644 --- a/cmd/podman/mount.go +++ b/cmd/podman/mount.go @@ -25,7 +25,7 @@ var ( ` _mountCommand = &cobra.Command{ - Use: "mount [flags] CONTAINER", + Use: "mount [flags] [CONTAINER]", Short: "Mount a working container's root filesystem", Long: mountDescription, RunE: func(cmd *cobra.Command, args []string) error { |