aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
authorMike McQuaid2015-02-04 14:20:21 +0000
committerMike McQuaid2015-02-04 14:20:21 +0000
commite8d8c3a486e5ccab7440fe134bd139b63679fed7 (patch)
tree157f2b4bf2a8e9400cbce57594af2081f7a45778 /Library/Homebrew
parent2787eaa853948964e704db18410ac180879d9390 (diff)
downloadbrew-e8d8c3a486e5ccab7440fe134bd139b63679fed7.tar.bz2
test-bot: don't try and bottle unstable formulae.
e.g. devel-only or head-only formulae.
Diffstat (limited to 'Library/Homebrew')
-rw-r--r--Library/Homebrew/cmd/test-bot.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/test-bot.rb b/Library/Homebrew/cmd/test-bot.rb
index f93cac98d..d7414302a 100644
--- a/Library/Homebrew/cmd/test-bot.rb
+++ b/Library/Homebrew/cmd/test-bot.rb
@@ -447,7 +447,7 @@ module Homebrew
audit_args << "--strict" if @added_formulae.include? formula_name
test "brew", "audit", *audit_args
if install_passed
- unless ARGV.include? '--no-bottle'
+ if formula.stable? && !ARGV.include?('--no-bottle')
bottle_args = ["--rb", formula_name]
if @tap
tap_user, tap_repo = @tap.split "/"