Fix podman image sign help output

Adjust the help output to mention `podman image sign` instead of just
`podman sign`.

Signed-off-by: Sascha Grunert <sgrunert@suse.com>
This commit is contained in:
Sascha Grunert 2020-03-04 09:22:51 +01:00
parent d5f5b2e8be
commit 6e1de159eb
No known key found for this signature in database
GPG Key ID: 8CE029DD1A866E52
1 changed files with 2 additions and 2 deletions

View File

@ -35,8 +35,8 @@ var (
signCommand.Remote = remoteclient signCommand.Remote = remoteclient
return signCmd(&signCommand) return signCmd(&signCommand)
}, },
Example: `podman sign --sign-by mykey imageID Example: `podman image sign --sign-by mykey imageID
podman sign --sign-by mykey --directory ./mykeydir imageID`, podman image sign --sign-by mykey --directory ./mykeydir imageID`,
} }
) )