summaryrefslogtreecommitdiff
path: root/vendor/github.com/openshift/imagebuilder/internals.go
diff options
context:
space:
mode:
authorTomSweeneyRedHat <tsweeney@redhat.com>2020-07-02 14:57:45 -0400
committerTomSweeneyRedHat <tsweeney@redhat.com>2020-07-02 14:57:56 -0400
commita704911061c2205475bf5b252d80fc43a9927a41 (patch)
tree35b68a42b69a687dfe82596c19518d0e07c1ad4b /vendor/github.com/openshift/imagebuilder/internals.go
parentbd2fca06090f8138b4f770b753adc05c28912d6f (diff)
downloadpodman-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/internals.go')
-rw-r--r--vendor/github.com/openshift/imagebuilder/internals.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/github.com/openshift/imagebuilder/internals.go b/vendor/github.com/openshift/imagebuilder/internals.go
index b652dc1c7..5dc174bf7 100644
--- a/vendor/github.com/openshift/imagebuilder/internals.go
+++ b/vendor/github.com/openshift/imagebuilder/internals.go
@@ -103,7 +103,7 @@ func makeUserArgs(bEnv []string, bArgs map[string]string) (userArgs []string) {
userArgs = bEnv
envMap := make(map[string]string)
for _, envVal := range bEnv {
- val := strings.Split(envVal, "=")
+ val := strings.SplitN(envVal, "=", 2)
if len(val) > 1 {
envMap[val[0]] = val[1]
}