diff --git a/cmd/mattermost/commands/channel.go b/cmd/mattermost/commands/channel.go index cd8e428912..f7eef14bf5 100644 --- a/cmd/mattermost/commands/channel.go +++ b/cmd/mattermost/commands/channel.go @@ -482,6 +482,11 @@ func restoreChannelsCmdF(command *cobra.Command, args []string) error { } } + suffix := "" + if len(channels) > 1 { + suffix = "s" + } + CommandPrintln("Successfully restored channel" + suffix) return nil }