mirror of
https://github.com/containers/podman.git
synced 2025-09-25 07:44:24 +08:00
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>
This commit is contained in:
2
vendor/github.com/openshift/imagebuilder/builder.go
generated
vendored
2
vendor/github.com/openshift/imagebuilder/builder.go
generated
vendored
@ -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]
|
||||
}
|
||||
|
Reference in New Issue
Block a user