diff options
author | Adrian Reber <areber@redhat.com> | 2019-06-21 11:31:38 +0000 |
---|---|---|
committer | Adrian Reber <areber@redhat.com> | 2019-06-21 13:37:04 +0200 |
commit | 1e706a021dde7566bc04a27b29411d4cd940ac17 (patch) | |
tree | 7b5b04bd4b7eaa57749210eca5aaabb42881c656 /cmd/podman/cliconfig/config.go | |
parent | f446ccf0b050f5577328e5ba3efcdb5cafaae254 (diff) | |
download | podman-1e706a021dde7566bc04a27b29411d4cd940ac17.tar.gz podman-1e706a021dde7566bc04a27b29411d4cd940ac17.tar.bz2 podman-1e706a021dde7566bc04a27b29411d4cd940ac17.zip |
Add --latest, -l to 'podman diff'
The man page of 'podman diff' claims that the diff sub-command knows
about --latest, -l. This adds support, as described in the man-page, to
the diff sub-command for --latest, -l.
Signed-off-by: Adrian Reber <areber@redhat.com>
Diffstat (limited to 'cmd/podman/cliconfig/config.go')
-rw-r--r-- | cmd/podman/cliconfig/config.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/podman/cliconfig/config.go b/cmd/podman/cliconfig/config.go index 4a4c839cc..e3e2edb95 100644 --- a/cmd/podman/cliconfig/config.go +++ b/cmd/podman/cliconfig/config.go @@ -113,6 +113,7 @@ type DiffValues struct { PodmanCommand Archive bool Format string + Latest bool } type ExecValues struct { |