diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-03-04 22:48:58 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-04 22:48:58 -0500 |
commit | 834f397db267f3be2ad13f7d24cec247c3468cbd (patch) | |
tree | 3bd06824d50371c2a57bd4fc9f5c29634c704f67 | |
parent | 797da2a57b43d1190dd1fb6ec78dcc9ec76c3bd3 (diff) | |
parent | 6e1de159eb477c8dce187b62e6b9b432de6e364b (diff) | |
download | podman-834f397db267f3be2ad13f7d24cec247c3468cbd.tar.gz podman-834f397db267f3be2ad13f7d24cec247c3468cbd.tar.bz2 podman-834f397db267f3be2ad13f7d24cec247c3468cbd.zip |
Merge pull request #5389 from openSUSE/fix-image-sign-help
Fix podman image sign help output
-rw-r--r-- | cmd/podman/sign.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/podman/sign.go b/cmd/podman/sign.go index bc909b64e..8ac59b33b 100644 --- a/cmd/podman/sign.go +++ b/cmd/podman/sign.go @@ -35,8 +35,8 @@ var ( signCommand.Remote = remoteclient return signCmd(&signCommand) }, - Example: `podman sign --sign-by mykey imageID - podman sign --sign-by mykey --directory ./mykeydir imageID`, + Example: `podman image sign --sign-by mykey imageID + podman image sign --sign-by mykey --directory ./mykeydir imageID`, } ) |