aboutsummaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorJamie Macey2010-10-25 21:12:31 -0700
committerAdam Vandenberg2010-10-30 14:50:54 -0700
commitd778aa69129b914ac393d2cdeab467c48597e406 (patch)
treeba3e538bcd9082eb5b520cf67483d9ae1c97c89a /bin
parent0c7812667417155d92da90b7eda5d4c6d113e631 (diff)
downloadhomebrew-d778aa69129b914ac393d2cdeab467c48597e406.tar.bz2
fix warnings: ambiguous splat
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/brew4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/brew b/bin/brew
index 07f6166ce..4ec64f0a1 100755
--- a/bin/brew
+++ b/bin/brew
@@ -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'