summaryrefslogtreecommitdiff
path: root/cmd/podman/build.go
diff options
context:
space:
mode:
authorGiuseppe Scrivano <gscrivan@redhat.com>2019-03-14 15:31:10 +0100
committerGiuseppe Scrivano <gscrivan@redhat.com>2019-03-15 10:39:17 +0100
commitfc65d71df2c95105d02316f369837a84fa4df0cb (patch)
tree028106c235dd43fca11fa4bc5496ea2a367ffbc8 /cmd/podman/build.go
parent39859850aec4d0d3fe8bcf7804f6f02a245e2b6e (diff)
downloadpodman-fc65d71df2c95105d02316f369837a84fa4df0cb.tar.gz
podman-fc65d71df2c95105d02316f369837a84fa4df0cb.tar.bz2
podman-fc65d71df2c95105d02316f369837a84fa4df0cb.zip
build: fix build DIR -t TAG
accept also the order "build DIR -t TAG" Closes: https://github.com/containers/libpod/issues/2636 Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Diffstat (limited to 'cmd/podman/build.go')
-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 72d78aff9..f0a67791a 100644
--- a/cmd/podman/build.go
+++ b/cmd/podman/build.go
@@ -52,7 +52,7 @@ func init() {
buildCommand.SetHelpTemplate(HelpTemplate())
buildCommand.SetUsageTemplate(UsageTemplate())
flags := buildCommand.Flags()
- flags.SetInterspersed(false)
+ flags.SetInterspersed(true)
budFlags := buildahcli.GetBudFlags(&budFlagsValues)
flag := budFlags.Lookup("pull")