aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/bottle.rb11
1 files changed, 6 insertions, 5 deletions
diff --git a/Library/Homebrew/cmd/bottle.rb b/Library/Homebrew/cmd/bottle.rb
index 73b071552..6a9d031b3 100644
--- a/Library/Homebrew/cmd/bottle.rb
+++ b/Library/Homebrew/cmd/bottle.rb
@@ -278,14 +278,15 @@ module Homebrew
end
end
end
- exit 0
end
def bottle
- merge if ARGV.include? "--merge"
-
- ARGV.resolved_formulae.each do |f|
- bottle_formula f
+ if ARGV.include? "--merge"
+ merge
+ else
+ ARGV.resolved_formulae.each do |f|
+ bottle_formula f
+ end
end
end
end