summaryrefslogtreecommitdiff
path: root/lib/chef/knife/exec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/knife/exec.rb')
-rw-r--r--lib/chef/knife/exec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/knife/exec.rb b/lib/chef/knife/exec.rb
index 4b7f570aec..9455d76571 100644
--- a/lib/chef/knife/exec.rb
+++ b/lib/chef/knife/exec.rb
@@ -44,7 +44,7 @@ class Chef::Knife::Exec < Chef::Knife
# Default script paths are chef-repo/.chef/scripts and ~/.chef/scripts
config[:script_path] << File.join(Chef::Knife.chef_config_dir, "scripts") if Chef::Knife.chef_config_dir
- Chef::Util::PathHelper.home(".chef", "scripts") { |p| config[:script_path] << p }
+ Chef::Util::PathHelper.home(".chef", "scripts") do |p| config[:script_path] << p end
scripts = Array(name_args)
context = Object.new