Missed this one

This commit is contained in:
Jean-Marc ANDRE 2020-12-01 01:10:47 +01:00
parent a14697a3e7
commit ffc4a3283a

View File

@ -112,8 +112,8 @@ func (in *BackupConfigurationSpec) DeepCopyInto(out *BackupConfigurationSpec) {
(*in)[i].DeepCopyInto(&(*out)[i])
}
}
if in.Path != nil {
in, out := &in.Path, &out.Path
if in.Paths != nil {
in, out := &in.Paths, &out.Paths
*out = make([]string, len(*in))
copy(*out, *in)
}