aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2015-02-04 14:20:21 +0000
committerMike McQuaid2015-02-04 14:20:21 +0000
commitf150de5aa913dd1ef0a3436911b1789e97fb69bf (patch)
treeea08e956c884ef7b96220383cd02fc2d7b2ec7b7 /Library
parent82bcbc1081be1fd389c6eb30c5af9164fab93aa2 (diff)
downloadhomebrew-f150de5aa913dd1ef0a3436911b1789e97fb69bf.tar.bz2
test-bot: don't try and bottle unstable formulae.
e.g. devel-only or head-only formulae.
Diffstat (limited to 'Library')
-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 "/"