diff options
author | TomSweeneyRedHat <tsweeney@redhat.com> | 2020-07-02 14:57:45 -0400 |
---|---|---|
committer | TomSweeneyRedHat <tsweeney@redhat.com> | 2020-07-02 14:57:56 -0400 |
commit | a704911061c2205475bf5b252d80fc43a9927a41 (patch) | |
tree | 35b68a42b69a687dfe82596c19518d0e07c1ad4b /vendor/github.com/openshift/imagebuilder/builder.go | |
parent | bd2fca06090f8138b4f770b753adc05c28912d6f (diff) | |
download | podman-a704911061c2205475bf5b252d80fc43a9927a41.tar.gz podman-a704911061c2205475bf5b252d80fc43a9927a41.tar.bz2 podman-a704911061c2205475bf5b252d80fc43a9927a41.zip |
Bump imagebuilder to v1.1.6 in upstream
Bump the imagebuilder package to v1.1.6 in
the upstream branch.
Signed-off-by: TomSweeneyRedHat <tsweeney@redhat.com>
Diffstat (limited to 'vendor/github.com/openshift/imagebuilder/builder.go')
-rw-r--r-- | vendor/github.com/openshift/imagebuilder/builder.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/github.com/openshift/imagebuilder/builder.go b/vendor/github.com/openshift/imagebuilder/builder.go index ffc3b257f..583c303c0 100644 --- a/vendor/github.com/openshift/imagebuilder/builder.go +++ b/vendor/github.com/openshift/imagebuilder/builder.go @@ -334,7 +334,7 @@ func ParseFile(path string) (*parser.Node, error) { func (b *Builder) Step() *Step { argsMap := make(map[string]string) for _, argsVal := range b.Arguments() { - val := strings.Split(argsVal, "=") + val := strings.SplitN(argsVal, "=", 2) if len(val) > 1 { argsMap[val[0]] = val[1] } |