[MM-56078] mmctl: assume local mode when no credentials found (#26215)

* assume local mode when no credentials found

* Use variable

---------

Co-authored-by: Mattermost Build <build@mattermost.com>
Co-authored-by: Ben Schumacher <ben.schumacher@mattermost.com>
Этот коммит содержится в:
Julien Tant
2025-03-26 05:21:21 -07:00
коммит произвёл GitHub
родитель 79e1c182ce
Коммит 48ea65aa5f
2 изменённых файлов: 18 добавлений и 4 удалений

Просмотреть файл

@@ -218,7 +218,7 @@ func validateArgsWithClient(fn validateArgsFn) func(cmd *cobra.Command, args []s
ctx, cancel := context.WithTimeout(context.Background(), shellCompleteTimeout)
defer cancel()
c, _, _, err := getClient(ctx)
c, _, _, err := getClient(ctx, cmd)
if err != nil {
return nil, cobra.ShellCompDirectiveError
}