@@ -53,7 +53,7 @@ func VerifyAndUpdateLicense(log *logger.CLILogger, license *kotsv1beta1.License,
53
53
for _ , channel := range license .Spec .Channels {
54
54
validChannels = append (validChannels , fmt .Sprintf ("%s/%s" , license .Spec .AppSlug , channel .ChannelSlug ))
55
55
}
56
- log .ChildActionWithoutSpinner (fmt .Sprintf ("To install from an allowed channel, use one of the following: %s" , strings .Join (validChannels , ", " )))
56
+ log .ChildActionWithoutSpinner (fmt .Sprintf ("To install/pull an allowed channel, use one of the following: %s" , strings .Join (validChannels , ", " )))
57
57
return license , nil
58
58
}
59
59
@@ -76,6 +76,6 @@ func VerifyAndUpdateLicense(log *logger.CLILogger, license *kotsv1beta1.License,
76
76
for _ , channel := range license .Spec .Channels {
77
77
validChannels = append (validChannels , fmt .Sprintf ("%s/%s" , license .Spec .AppSlug , channel .ChannelSlug ))
78
78
}
79
- log .ChildActionWithoutSpinner (fmt .Sprintf ("To install from an allowed channel, use one of the following: %s" , strings .Join (validChannels , ", " )))
79
+ log .ChildActionWithoutSpinner (fmt .Sprintf ("To install/pull an allowed channel, use one of the following: %s" , strings .Join (validChannels , ", " )))
80
80
return updatedLicense .License , errors .New (fmt .Sprintf ("channel slug %q is not allowed by latest license" , preferredChannelSlug ))
81
81
}
0 commit comments