summaryrefslogtreecommitdiff
path: root/lib/chef/mixin/windows_architecture_helper.rb
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2019-05-10 18:00:03 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2019-05-10 18:00:03 -0700
commit6800edf1709df2a2de4aaa134e6b65879fdd61af (patch)
treefbb2953cf03d556b05cf1b4e830fa87d5393a3c1 /lib/chef/mixin/windows_architecture_helper.rb
parent91ef348e8039ea181f785a714fa317d421ac439e (diff)
downloadchef-6800edf1709df2a2de4aaa134e6b65879fdd61af.tar.gz
Change some more require to require_relative
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'lib/chef/mixin/windows_architecture_helper.rb')
-rw-r--r--lib/chef/mixin/windows_architecture_helper.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/mixin/windows_architecture_helper.rb b/lib/chef/mixin/windows_architecture_helper.rb
index 18dfa2010a..44056900a4 100644
--- a/lib/chef/mixin/windows_architecture_helper.rb
+++ b/lib/chef/mixin/windows_architecture_helper.rb
@@ -18,8 +18,8 @@
require_relative "../exceptions"
require_relative "../platform/query_helpers"
-require "chef/win32/process" if Chef::Platform.windows?
-require "chef/win32/system" if Chef::Platform.windows?
+require_relative "../win32/process" if Chef::Platform.windows?
+require_relative "../win32/system" if Chef::Platform.windows?
class Chef
module Mixin