mirror of
https://github.com/capistrano/capistrano
synced 2023-03-27 23:21:18 -04:00
Display file for external configurations, rather than inspected proc.
git-svn-id: http://svn.rubyonrails.org/rails/tools/capistrano@5083 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
parent
df6d29d01a
commit
3d9d756c94
2 changed files with 3 additions and 1 deletions
|
@ -1,5 +1,7 @@
|
|||
*SVN*
|
||||
|
||||
* Display file for external configurations, rather than inspected proc. [Jamis Buck]
|
||||
|
||||
* Connect to multiple servers in parallel, rather than serially. [Jamis Buck]
|
||||
|
||||
* Add SCM module for Mercurial (closes #4150) [Matthew Elder]
|
||||
|
|
|
@ -150,7 +150,7 @@ module Capistrano
|
|||
instance_eval(options[:string], options[:name] || "<eval>")
|
||||
|
||||
elsif options[:proc]
|
||||
logger.trace "loading configuration #{options[:proc].inspect}"
|
||||
logger.trace "loading configuration #{eval("__FILE__", options[:proc])}"
|
||||
instance_eval(&options[:proc])
|
||||
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue