diff options
author | Tim Smith <tsmith@chef.io> | 2021-05-07 15:31:51 -0700 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2021-05-07 15:31:51 -0700 |
commit | cb0b972a45ebd3727627ed991dba6b51d85c1ef9 (patch) | |
tree | 932c15089c98226d82ccdc7a7bb0d24fca82247a /Rakefile | |
parent | 074c5ea1b8311166bea93a3fd4e2761c13827f11 (diff) | |
download | chef-cb0b972a45ebd3727627ed991dba6b51d85c1ef9.tar.gz |
Resolve chefstyle warnings
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'Rakefile')
-rw-r--r-- | Rakefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -108,8 +108,8 @@ task :update_chef_exec_dll do sh("hab pkg install chef/chef-powershell-shim") sh("hab pkg install chef/chef-powershell-shim-x86") - x64 = `hab pkg path chef/chef-powershell-shim`.chomp.tr('\\', "/") - x86 = `hab pkg path chef/chef-powershell-shim-x86`.chomp.tr('\\', "/") + x64 = `hab pkg path chef/chef-powershell-shim`.chomp.tr("\\", "/") + x86 = `hab pkg path chef/chef-powershell-shim-x86`.chomp.tr("\\", "/") FileUtils.rm_rf(Dir["distro/ruby_bin_folder/AMD64/*"]) FileUtils.rm_rf(Dir["distro/ruby_bin_folder/x86/*"]) puts "Copying #{x64}/bin/* to distro/ruby_bin_folder/AMD64" |