diff options
author | Vasundhara Jagdale <vasundhara.jagdale@msystechnologies.com> | 2019-05-24 00:51:19 -0700 |
---|---|---|
committer | Bryan McLellan <btm@loftninjas.org> | 2019-05-24 00:51:19 -0700 |
commit | 82362cea3ecb50a808b5bff0300a17a946a89b22 (patch) | |
tree | 0a74f7b726d9a2d3804ca262c2e52fabeaf5e397 /lib/chef/knife.rb | |
parent | 6d6ef7d068b18f4eb47a79790f5cdf1ff40d669c (diff) | |
download | chef-82362cea3ecb50a808b5bff0300a17a946a89b22.tar.gz |
Fix for knife bootstrap inheritance issue with knife plugins (#8585)
* Fix for knife bootstrap inheritance issue with knife plugins
Signed-off-by: Vasu1105 <vasundhara.jagdale@msystechnologies.com>
Diffstat (limited to 'lib/chef/knife.rb')
-rw-r--r-- | lib/chef/knife.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/chef/knife.rb b/lib/chef/knife.rb index 5057fd5880..2460dbaed8 100644 --- a/lib/chef/knife.rb +++ b/lib/chef/knife.rb @@ -88,6 +88,7 @@ class Chef end def self.inherited(subclass) + super unless subclass.unnamed? subcommands[subclass.snake_case_name] = subclass subcommand_files[subclass.snake_case_name] += |