summaryrefslogtreecommitdiff
path: root/lib/chef/provider/remote_file/ftp.rb
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2019-05-08 17:15:15 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2019-05-08 17:15:15 -0700
commit11a7032fc2b55ea7de10fc20705faff303a07350 (patch)
tree7e69c0c4c87aa5c895724995499f324ec81b429d /lib/chef/provider/remote_file/ftp.rb
parentbc7687e56763cedbd010cfd566aa2fc0c53bb194 (diff)
downloadchef-11a7032fc2b55ea7de10fc20705faff303a07350.tar.gz
fix a bunch of weirdly mangled require lines
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'lib/chef/provider/remote_file/ftp.rb')
-rw-r--r--lib/chef/provider/remote_file/ftp.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/provider/remote_file/ftp.rb b/lib/chef/provider/remote_file/ftp.rb
index a43209c693..b6399ee077 100644
--- a/lib/chef/provider/remote_file/ftp.rb
+++ b/lib/chef/provider/remote_file/ftp.rb
@@ -19,7 +19,7 @@
require "uri"
require "tempfile"
require "net/ftp"
-require_relative ""
+require_relative "../remote_file"
require_relative "../../file_content_management/tempfile"
class Chef