summaryrefslogtreecommitdiff
path: root/cmd/podman/images
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-09-17 07:02:52 -0400
committerGitHub <noreply@github.com>2021-09-17 07:02:52 -0400
commit9a5987cf6a7729f9d03a663dd361a37ca473da59 (patch)
tree447677216c3a88bef777cd6a452252a0314f17a7 /cmd/podman/images
parentc6ae5c7961e2663ba91de7877aafe9791a80b245 (diff)
parent4216f7b7f492fee80cfc9a7f1deb608096edd890 (diff)
downloadpodman-9a5987cf6a7729f9d03a663dd361a37ca473da59.tar.gz
podman-9a5987cf6a7729f9d03a663dd361a37ca473da59.tar.bz2
podman-9a5987cf6a7729f9d03a663dd361a37ca473da59.zip
Merge pull request #11603 from rhatdan/truncate
Add no-trunc support to podman-events
Diffstat (limited to 'cmd/podman/images')
-rw-r--r--cmd/podman/images/history.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/podman/images/history.go b/cmd/podman/images/history.go
index c065acfad..cc7b1b4eb 100644
--- a/cmd/podman/images/history.go
+++ b/cmd/podman/images/history.go
@@ -11,6 +11,7 @@ import (
"github.com/containers/common/pkg/report"
"github.com/containers/podman/v3/cmd/podman/common"
"github.com/containers/podman/v3/cmd/podman/registry"
+ "github.com/containers/podman/v3/cmd/podman/utils"
"github.com/containers/podman/v3/pkg/domain/entities"
"github.com/docker/go-units"
"github.com/pkg/errors"
@@ -73,8 +74,8 @@ func historyFlags(cmd *cobra.Command) {
flags.BoolVarP(&opts.human, "human", "H", true, "Display sizes and dates in human readable format")
flags.BoolVar(&opts.noTrunc, "no-trunc", false, "Do not truncate the output")
- flags.BoolVar(&opts.noTrunc, "notruncate", false, "Do not truncate the output")
flags.BoolVarP(&opts.quiet, "quiet", "q", false, "Display the numeric IDs only")
+ flags.SetNormalizeFunc(utils.AliasFlags)
}
func history(cmd *cobra.Command, args []string) error {