convox / convox

append possibly assigns to a wrong variable CRT-D0001
Bug risk
Minor
12 days agoa year old
append result not assigned to the same slice
284	for i, s := range m.Services {
285		me := make([]string, len(m.Environment))
286		copy(me, m.Environment)
287		m.Services[i].Environment = append(me, s.Environment...)288	}
289
290	keys := map[string]bool{}