aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2013-06-23 13:02:02 -0700
committerAdam Vandenberg2013-06-23 13:02:10 -0700
commit3dd2715ec8fe3505b99386b56fbe1df25b41b3da (patch)
tree67464bbce78db67f400bf6b230b9310f68e48ecd /Library
parentf85863cbd0f5cc105908273dbeca532d24893823 (diff)
downloadbrew-3dd2715ec8fe3505b99386b56fbe1df25b41b3da.tar.bz2
remove no-op code in bottle.rb
ARGV.formulae returns formulae, so no need to pass through factory
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/bottle.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/bottle.rb b/Library/Homebrew/cmd/bottle.rb
index f868c00b9..274e3ea6a 100644
--- a/Library/Homebrew/cmd/bottle.rb
+++ b/Library/Homebrew/cmd/bottle.rb
@@ -101,7 +101,7 @@ module Homebrew extend self
end
ARGV.formulae.each do |f|
- bottle_formula Formula.factory f
+ bottle_formula f
end
end
end