summaryrefslogtreecommitdiff
path: root/lib/chef/provider/script.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/provider/script.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/provider/script.rb')
-rw-r--r--lib/chef/provider/script.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/provider/script.rb b/lib/chef/provider/script.rb
index 7c55cff167..8d33c56da2 100644
--- a/lib/chef/provider/script.rb
+++ b/lib/chef/provider/script.rb
@@ -18,7 +18,7 @@
require "tempfile"
require_relative "execute"
-require "chef/win32/security" if Chef::Platform.windows?
+require_relative "../win32/security" if Chef::Platform.windows?
require "forwardable"
class Chef