diff options
| author | Jamie Macey | 2010-10-25 21:12:31 -0700 | 
|---|---|---|
| committer | Adam Vandenberg | 2010-10-30 14:50:54 -0700 | 
| commit | d778aa69129b914ac393d2cdeab467c48597e406 (patch) | |
| tree | ba3e538bcd9082eb5b520cf67483d9ae1c97c89a /bin | |
| parent | 0c7812667417155d92da90b7eda5d4c6d113e631 (diff) | |
| download | homebrew-d778aa69129b914ac393d2cdeab467c48597e406.tar.bz2 | |
fix warnings: ambiguous splat
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/brew | 4 | 
1 files changed, 2 insertions, 2 deletions
| @@ -167,7 +167,7 @@ begin              path            end          end -        exec_editor *paths +        exec_editor(*paths)        end    when 'up', 'update' @@ -225,7 +225,7 @@ begin        elsif ARGV.named.empty?          raise UsageError        else -        exec_editor *ARGV.named.collect {|name| make name} +        exec_editor(*ARGV.named.collect {|name| make name})        end      when 'diy', 'configure' | 
