aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-03-01 02:23:41 -0800
committerGitHub <noreply@github.com>2019-03-01 02:23:41 -0800
commitc80416f0346200c7906cfc16c6101594653a0ad6 (patch)
tree37a99467cc92d6307982bc5630a42b3d15f10b3c
parent91373151335a84c5b78dbe46362cb678807d7509 (diff)
parentf5395008840b516afc385d06d86fe58abc362ed9 (diff)
downloadpodman-c80416f0346200c7906cfc16c6101594653a0ad6.tar.gz
podman-c80416f0346200c7906cfc16c6101594653a0ad6.tar.bz2
podman-c80416f0346200c7906cfc16c6101594653a0ad6.zip
Merge pull request #2492 from rhatdan/pull
Should be defaulting to pull not pull-always
-rw-r--r--cmd/podman/build.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/build.go b/cmd/podman/build.go
index 8ea9e6957..cfeabfb4e 100644
--- a/cmd/podman/build.go
+++ b/cmd/podman/build.go
@@ -53,7 +53,7 @@ func init() {
flags.SetInterspersed(false)
budFlags := buildahcli.GetBudFlags(&budFlagsValues)
- flag := budFlags.Lookup("pull-always")
+ flag := budFlags.Lookup("pull")
flag.Value.Set("true")
flag.DefValue = "true"
layerFlags := buildahcli.GetLayerFlags(&layerValues)