aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2013-10-12 18:12:18 +0100
committerMike McQuaid2013-10-12 18:16:15 +0100
commita5659efbced83bfe8a08a7444034d88b04ba4acd (patch)
tree24dcce71f101517d074168f05922188143f5ec25 /Library
parentdd727c66514afee93e4f5132b5f3166e8f4c8c50 (diff)
downloadhomebrew-a5659efbced83bfe8a08a7444034d88b04ba4acd.tar.bz2
brew-test-bot: fix fetch options spacing.
Diffstat (limited to 'Library')
-rwxr-xr-xLibrary/Contributions/cmd/brew-test-bot.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Contributions/cmd/brew-test-bot.rb b/Library/Contributions/cmd/brew-test-bot.rb
index 43594a419..9d837eac8 100755
--- a/Library/Contributions/cmd/brew-test-bot.rb
+++ b/Library/Contributions/cmd/brew-test-bot.rb
@@ -264,10 +264,10 @@ class Test
end
test "brew fetch #{dependencies}" unless dependencies.empty?
- formula_fetch_options = ""
+ formula_fetch_options = " "
formula_fetch_options << " --build-bottle" unless ARGV.include? '--no-bottle'
formula_fetch_options << " --force" if ARGV.include? '--cleanup'
- test "brew fetch #{formula_fetch_options} #{formula}"
+ test "brew fetch#{formula_fetch_options} #{formula}"
test "brew uninstall --force #{formula}" if formula_object.installed?
install_args = '--verbose'
install_args << ' --build-bottle' unless ARGV.include? '--no-bottle'