diff options
author | 007lva <007.lva@gmail.com> | 2020-09-24 23:08:12 +0200 |
---|---|---|
committer | 007lva <007.lva@gmail.com> | 2020-09-24 23:08:52 +0200 |
commit | 6ecacec32423b116e64fdcc11be0e8e18ce94706 (patch) | |
tree | ea00b3aa4389335922f42b6e22aa6921f64ad070 /lib/chef/file_content_management | |
parent | a1e8747af72cf91a7b5a729db647e158f46ad01f (diff) | |
download | chef-6ecacec32423b116e64fdcc11be0e8e18ce94706.tar.gz |
Use Ruby 2.6 endless Range syntax
Signed-off-by: Luigi <007.lva@gmail.com>
Diffstat (limited to 'lib/chef/file_content_management')
-rw-r--r-- | lib/chef/file_content_management/tempfile.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/file_content_management/tempfile.rb b/lib/chef/file_content_management/tempfile.rb index 763648de33..27efe34191 100644 --- a/lib/chef/file_content_management/tempfile.rb +++ b/lib/chef/file_content_management/tempfile.rb @@ -76,7 +76,7 @@ class Chef # complexity here is due to supporting mangling non-UTF8 strings (e.g. latin-1 filenames with characters that are illegal in UTF-8) b = File.basename(@new_resource.path) i = b.index(".") - i.nil? ? "" : b[i..-1].scrub + i.nil? ? "" : b[i..].scrub end # Returns the possible directories for the tempfile to be created in. |