diff options
author | Tim Smith <tsmith84@gmail.com> | 2020-07-07 15:54:52 -0700 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2020-07-07 15:54:52 -0700 |
commit | 39d7c77e2e2259f386ee42b9fa28c56103934f0c (patch) | |
tree | bd5508610696f2b922167011973bd30a071117f5 /spec/scripts | |
parent | 293df390e41f74d012ebd07cc8308895200dc6e7 (diff) | |
download | chef-expand_path.tar.gz |
Fix quotes for Chefstyleexpand_path
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'spec/scripts')
-rw-r--r-- | spec/scripts/ssl-serve.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/scripts/ssl-serve.rb b/spec/scripts/ssl-serve.rb index 40b77d4d1a..b03fe4af42 100644 --- a/spec/scripts/ssl-serve.rb +++ b/spec/scripts/ssl-serve.rb @@ -12,7 +12,7 @@ require "webrick/https" $ssl = true -CHEF_SPEC_DATA = File.expand_path('../data', __dir__) +CHEF_SPEC_DATA = File.expand_path("../data", __dir__) cert_text = File.read(File.expand_path("ssl/chef-rspec.cert", CHEF_SPEC_DATA)) cert = OpenSSL::X509::Certificate.new(cert_text) key_text = File.read(File.expand_path("ssl/chef-rspec.key", CHEF_SPEC_DATA)) |