diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-02-02 13:58:17 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-02 13:58:17 -0500 |
commit | 978c005869eeca40959e6d6d4a52c5ba9059f827 (patch) | |
tree | c29608e06378494b7d78ad0dda47dd8a3c716ae0 /cmd/podman/images | |
parent | 27cff475d5d99f6d59072c52a0f4e6d617d8d06c (diff) | |
parent | c16cde203d7f0ac992514aa92284e6eb4c77ac1f (diff) | |
download | podman-978c005869eeca40959e6d6d4a52c5ba9059f827.tar.gz podman-978c005869eeca40959e6d6d4a52c5ba9059f827.tar.bz2 podman-978c005869eeca40959e6d6d4a52c5ba9059f827.zip |
Merge pull request #9184 from vrothberg/3.0-fix-9134
[3.0] podman build --pull: refine help message and docs
Diffstat (limited to 'cmd/podman/images')
-rw-r--r-- | cmd/podman/images/build.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd/podman/images/build.go b/cmd/podman/images/build.go index 1029e03d1..a35fea442 100644 --- a/cmd/podman/images/build.go +++ b/cmd/podman/images/build.go @@ -106,7 +106,9 @@ func buildFlags(cmd *cobra.Command) { logrus.Errorf("unable to set --pull to true: %v", err) } flag.DefValue = "true" + flag.Usage = "Always attempt to pull the image (errors are fatal)" flags.AddFlagSet(&budFlags) + // Add the completion functions budCompletions := buildahCLI.GetBudFlagsCompletions() completion.CompleteCommandFlags(cmd, budCompletions) |