diff options
| author | Jamie Macey | 2010-10-25 21:12:31 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2010-10-30 14:50:54 -0700 |
| commit | b7fa82b28df2c076ce2d4bb4dc0384aad75cee2a (patch) | |
| tree | 14b273416ad2abdbe0cd9b0f4cc87484b1dc5d29 /bin | |
| parent | 6ff5e194c74cbfc53c53b867159faed5a5afc086 (diff) | |
| download | brew-b7fa82b28df2c076ce2d4bb4dc0384aad75cee2a.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' |
