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

generate changes

This commit is contained in:
Daishan Peng
2018-03-30 15:05:51 -07:00
committed by Darren Shepherd
parent d8329e8b0e
commit f68ada9504
2 changed files with 14 additions and 0 deletions

View File

@@ -273,6 +273,16 @@ func (in *AppSpec) DeepCopy() *AppSpec {
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *AppStatus) DeepCopyInto(out *AppStatus) {
*out = *in
if in.StdOutput != nil {
in, out := &in.StdOutput, &out.StdOutput
*out = make([]string, len(*in))
copy(*out, *in)
}
if in.StdError != nil {
in, out := &in.StdError, &out.StdError
*out = make([]string, len(*in))
copy(*out, *in)
}
if in.Releases != nil {
in, out := &in.Releases, &out.Releases
*out = make([]ReleaseInfo, len(*in))