1
0
mirror of https://github.com/rancher/types.git synced 2025-08-31 21:00:16 +00:00

update generated code

This commit is contained in:
gitlawr
2018-04-18 11:27:15 +08:00
parent 0394c78ae8
commit 74c67933c7
5 changed files with 15 additions and 0 deletions

View File

@@ -4699,6 +4699,13 @@ func (in *PipelineExecutionStatus) DeepCopyInto(out *PipelineExecutionStatus) {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
if in.EnvVars != nil {
in, out := &in.EnvVars, &out.EnvVars
*out = make(map[string]string, len(*in))
for key, val := range *in {
(*out)[key] = val
}
}
return
}