From bc7687e56763cedbd010cfd566aa2fc0c53bb194 Mon Sep 17 00:00:00 2001 From: Lamont Granquist Date: Wed, 8 May 2019 17:03:26 -0700 Subject: Convert require to require_relative This gives a speed boost since rubygems does not have to scan through every gem in the gemset in order to find the file. Signed-off-by: Lamont Granquist --- lib/chef/win32/system.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) mode change 100755 => 100644 lib/chef/win32/system.rb (limited to 'lib/chef/win32/system.rb') diff --git a/lib/chef/win32/system.rb b/lib/chef/win32/system.rb old mode 100755 new mode 100644 index ec2e5d3457..63616fa397 --- a/lib/chef/win32/system.rb +++ b/lib/chef/win32/system.rb @@ -16,8 +16,8 @@ # limitations under the License. # -require "chef/win32/api/system" -require "chef/win32/error" +require_relative "api/system" +require_relative "error" require "ffi" class Chef -- cgit v1.2.1