From 5a676ba1ee80665f2dfa3f2c658d5200074040f0 Mon Sep 17 00:00:00 2001 From: Jonathan Weiss Date: Wed, 18 Nov 2009 16:29:07 +0100 Subject: [PATCH] do not log the search for local executables - #127 --- lib/capistrano/recipes/deploy.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/capistrano/recipes/deploy.rb b/lib/capistrano/recipes/deploy.rb index 5ce02b766..a244134d2 100644 --- a/lib/capistrano/recipes/deploy.rb +++ b/lib/capistrano/recipes/deploy.rb @@ -102,7 +102,7 @@ def run_locally(cmd) # tests if the given command is present on the local system def command_present?(cmd) executable = cmd.to_s.split(" ").first - unless find_executable(executable) + unless find_executable0(executable) logger.important "executable '#{executable}' not present or not in $PATH on the local system!" end end