Update cmd/minikube/cmd/root.go

pull/16852/head
Steven Powell 2023-07-12 16:10:55 -07:00 committed by GitHub
parent 164a522b60
commit b8801c3306
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -347,7 +347,7 @@ func applyToAllCommands(cmd *cobra.Command, f func(subCmd *cobra.Command)) {
for _, c := range cmd.Commands() {
f(c)
if c.HasSubCommands() {
visitAllCommand(c, f)
applyToAllCommands(c, f)
}
}
}