diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2016-02-12 09:55:42 -0800 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2016-02-12 09:55:42 -0800 |
commit | b48b150cc50dbd54a719ea54a965de53d4531170 (patch) | |
tree | ca26e5887c259d6c2c1d6b9fc82247fefa8fe8c0 /lib/chef/http | |
parent | 03eadde04eb219bfa8abe52d312261a5142e7266 (diff) | |
download | chef-b48b150cc50dbd54a719ea54a965de53d4531170.tar.gz |
convert MultilineOperationIndentation style to "indented"
this looks nicer.
Diffstat (limited to 'lib/chef/http')
-rw-r--r-- | lib/chef/http/basic_client.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/http/basic_client.rb b/lib/chef/http/basic_client.rb index 9428858cdf..e0a02a05cf 100644 --- a/lib/chef/http/basic_client.rb +++ b/lib/chef/http/basic_client.rb @@ -98,7 +98,7 @@ class Chef #adapted from buildr/lib/buildr/core/transports.rb def proxy_uri proxy = Chef::Config["#{url.scheme}_proxy"] || - env["#{url.scheme.upcase}_PROXY"] || env["#{url.scheme}_proxy"] + env["#{url.scheme.upcase}_PROXY"] || env["#{url.scheme}_proxy"] # Check if the proxy string contains a scheme. If not, add the url's scheme to the # proxy before parsing. The regex /^.*:\/\// matches, for example, http://. Reusing proxy |