diff options
author | Tim Smith <tsmith@chef.io> | 2018-06-26 21:27:20 -0700 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2018-06-26 21:27:20 -0700 |
commit | 8e1787957985e0177ad600be36fccea912235870 (patch) | |
tree | 2429375aeecb5d0b992d9fa88d65b9c0a0b1c1d8 /lib | |
parent | 4e39c729c5981067c028bd3abcb50b066d760a28 (diff) | |
download | chef-8e1787957985e0177ad600be36fccea912235870.tar.gz |
Add missing require knife
This should be in all the plugins and it is except for this one.
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/chef/knife/environment_from_file.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/chef/knife/environment_from_file.rb b/lib/chef/knife/environment_from_file.rb index 5272c8934a..b16c3331bd 100644 --- a/lib/chef/knife/environment_from_file.rb +++ b/lib/chef/knife/environment_from_file.rb @@ -16,6 +16,8 @@ # limitations under the License. # +require "chef/knife" + class Chef class Knife class EnvironmentFromFile < Knife |