We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abd02b6 commit fdcfd22Copy full SHA for fdcfd22
1 file changed
cli-plugins/manager/hooks.go
@@ -69,8 +69,8 @@ func invokeAndCollectHooks(ctx context.Context, cfg *configfile.ConfigFile, root
69
return nil
70
}
71
nextSteps := make([]string, 0, len(pluginsCfg))
72
- for pluginName, cfg := range pluginsCfg {
73
- match, ok := pluginMatch(cfg, subCmdStr)
+ for pluginName, pluginCfg := range pluginsCfg {
+ match, ok := pluginMatch(pluginCfg, subCmdStr)
74
if !ok {
75
continue
76
0 commit comments