diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2019-05-08 17:15:15 -0700 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2019-05-08 17:15:15 -0700 |
commit | 11a7032fc2b55ea7de10fc20705faff303a07350 (patch) | |
tree | 7e69c0c4c87aa5c895724995499f324ec81b429d /lib/chef/http | |
parent | bc7687e56763cedbd010cfd566aa2fc0c53bb194 (diff) | |
download | chef-11a7032fc2b55ea7de10fc20705faff303a07350.tar.gz |
fix a bunch of weirdly mangled require lines
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'lib/chef/http')
-rw-r--r-- | lib/chef/http/simple.rb | 2 | ||||
-rw-r--r-- | lib/chef/http/simple_json.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/http/simple.rb b/lib/chef/http/simple.rb index c318debd1d..fcc6ef91d7 100644 --- a/lib/chef/http/simple.rb +++ b/lib/chef/http/simple.rb @@ -16,7 +16,7 @@ # limitations under the License. # -require_relative "" +require_relative "../http" require_relative "authenticator" require_relative "decompressor" require_relative "cookie_manager" diff --git a/lib/chef/http/simple_json.rb b/lib/chef/http/simple_json.rb index 57886380e6..000aadc04d 100644 --- a/lib/chef/http/simple_json.rb +++ b/lib/chef/http/simple_json.rb @@ -16,7 +16,7 @@ # limitations under the License. # -require_relative "" +require_relative "../http" require_relative "authenticator" require_relative "decompressor" require_relative "cookie_manager" |