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/application/windows_service.rb | |
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/application/windows_service.rb')
-rw-r--r-- | lib/chef/application/windows_service.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/application/windows_service.rb b/lib/chef/application/windows_service.rb index 6bbc7c6d0b..ebf7533956 100644 --- a/lib/chef/application/windows_service.rb +++ b/lib/chef/application/windows_service.rb @@ -16,9 +16,9 @@ # limitations under the License. # -require_relative ".." +require_relative "../../chef" require_relative "../monologger" -require_relative "" +require_relative "../application" require_relative "../client" require_relative "../config" require_relative "../handler/error_report" |