From a704911061c2205475bf5b252d80fc43a9927a41 Mon Sep 17 00:00:00 2001 From: TomSweeneyRedHat Date: Thu, 2 Jul 2020 14:57:45 -0400 Subject: Bump imagebuilder to v1.1.6 in upstream Bump the imagebuilder package to v1.1.6 in the upstream branch. Signed-off-by: TomSweeneyRedHat --- vendor/github.com/openshift/imagebuilder/internals.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vendor/github.com/openshift/imagebuilder/internals.go') 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] } -- cgit v1.2.3-54-g00ecf