summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authoropenshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com>2022-07-15 15:12:58 +0000
committerGitHub <noreply@github.com>2022-07-15 15:12:58 +0000
commit98b22e29c9a769020de1ae8d2bf9a7630e930e78 (patch)
tree1c4f7536934e0354c24ebee1a91acaad832855b7 /cmd
parentb4c09bef668dd41e1cc55b8d379992e2d22714b7 (diff)
parent90607a6d04ad96d1821e8f50157d6e8aa600cdf5 (diff)
downloadpodman-98b22e29c9a769020de1ae8d2bf9a7630e930e78.tar.gz
podman-98b22e29c9a769020de1ae8d2bf9a7630e930e78.tar.bz2
podman-98b22e29c9a769020de1ae8d2bf9a7630e930e78.zip
Merge pull request #14932 from jakecorrenti/pull-all-tags-shorthand
Podman pull --all-tags shorthand option
Diffstat (limited to 'cmd')
-rw-r--r--cmd/podman/images/pull.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/images/pull.go b/cmd/podman/images/pull.go
index 6e3ec1517..8211ceba5 100644
--- a/cmd/podman/images/pull.go
+++ b/cmd/podman/images/pull.go
@@ -77,7 +77,7 @@ func init() {
func pullFlags(cmd *cobra.Command) {
flags := cmd.Flags()
- flags.BoolVar(&pullOptions.AllTags, "all-tags", false, "All tagged images in the repository will be pulled")
+ flags.BoolVarP(&pullOptions.AllTags, "all-tags", "a", false, "All tagged images in the repository will be pulled")
credsFlagName := "creds"
flags.StringVar(&pullOptions.CredentialsCLI, credsFlagName, "", "`Credentials` (USERNAME:PASSWORD) to use for authenticating to a registry")