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

go generate

This commit is contained in:
galal-hussein
2018-03-29 21:29:10 +02:00
parent 02a87a2687
commit 701d2ecb57

View File

@@ -5472,6 +5472,11 @@ func (in *RKEConfigNodePlan) DeepCopyInto(out *RKEConfigNodePlan) {
*out = make([]PortCheck, len(*in))
copy(*out, *in)
}
if in.Files != nil {
in, out := &in.Files, &out.Files
*out = make([]File, len(*in))
copy(*out, *in)
}
return
}